pub struct LinearCommand<'a> { /* private fields */ }Trait Implementations§
source§impl<'a> Command for LinearCommand<'a>
impl<'a> Command for LinearCommand<'a>
source§fn priority(&self) -> Priority
fn priority(&self) -> Priority
Return this command’s
Priority, determining how this event is
ordered amongst others it does not have a causal relationship with.source§fn parent(&self) -> Prior<Address>
fn parent(&self) -> Prior<Address>
Return this command’s parents, or address(s) that immediately
precede(s) this.
Auto Trait Implementations§
impl<'a> Freeze for LinearCommand<'a>
impl<'a> RefUnwindSafe for LinearCommand<'a>
impl<'a> Send for LinearCommand<'a>
impl<'a> Sync for LinearCommand<'a>
impl<'a> Unpin for LinearCommand<'a>
impl<'a> UnwindSafe for LinearCommand<'a>
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