pub enum SyncCommand {
AllBuffers(SyncAllBuffers),
SomeBuffers(Vec<PointerOrName>, SyncSomeBuffers),
}
Expand description
The sync command, used to pull updates for one or more buffers.
Response: 0 or more Hdatas, received until a DesyncCommand
is sent.
Variants§
AllBuffers(SyncAllBuffers)
SomeBuffers(Vec<PointerOrName>, SyncSomeBuffers)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SyncCommand
impl RefUnwindSafe for SyncCommand
impl Send for SyncCommand
impl Sync for SyncCommand
impl Unpin for SyncCommand
impl UnwindSafe for SyncCommand
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