pub struct SequencerHandle { /* private fields */ }Expand description
Handle for controlling a SnapshotSequencer that lives inside a
tokio task.
Clone the handle to share control of the sequencer across multiple threads (e.g. multiple OSC handlers).
Implementations§
Trait Implementations§
Source§impl Clone for SequencerHandle
impl Clone for SequencerHandle
Source§fn clone(&self) -> SequencerHandle
fn clone(&self) -> SequencerHandle
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 moreAuto Trait Implementations§
impl Freeze for SequencerHandle
impl RefUnwindSafe for SequencerHandle
impl Send for SequencerHandle
impl Sync for SequencerHandle
impl Unpin for SequencerHandle
impl UnsafeUnpin for SequencerHandle
impl UnwindSafe for SequencerHandle
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