pub struct LinearCommand<'a> { /* private fields */ }Trait Implementations§
Source§impl Command for LinearCommand<'_>
impl Command for LinearCommand<'_>
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