pub enum LinuxRemoteChange {
Upsert(LinuxRemoteUpsert),
Delete(LinuxRemoteDelete),
}Expand description
One product-persisted remote namespace transition ready for engine exposure.
Variants§
Upsert(LinuxRemoteUpsert)
Delete(LinuxRemoteDelete)
Trait Implementations§
Source§impl Clone for LinuxRemoteChange
impl Clone for LinuxRemoteChange
Source§fn clone(&self) -> LinuxRemoteChange
fn clone(&self) -> LinuxRemoteChange
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LinuxRemoteChange
impl Debug for LinuxRemoteChange
Source§impl PartialEq for LinuxRemoteChange
impl PartialEq for LinuxRemoteChange
impl Eq for LinuxRemoteChange
impl StructuralPartialEq for LinuxRemoteChange
Auto Trait Implementations§
impl Freeze for LinuxRemoteChange
impl RefUnwindSafe for LinuxRemoteChange
impl Send for LinuxRemoteChange
impl Sync for LinuxRemoteChange
impl Unpin for LinuxRemoteChange
impl UnwindSafe for LinuxRemoteChange
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more