pub enum CommandLaneEvent {
Receipt(CommandReceipt),
Lifecycle(CommandLifecycleEvent),
}Expand description
Command-lane output.
Variants§
Receipt(CommandReceipt)
Lifecycle(CommandLifecycleEvent)
Trait Implementations§
Source§impl Clone for CommandLaneEvent
impl Clone for CommandLaneEvent
Source§fn clone(&self) -> CommandLaneEvent
fn clone(&self) -> CommandLaneEvent
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 CommandLaneEvent
impl Debug for CommandLaneEvent
Source§impl<'de> Deserialize<'de> for CommandLaneEvent
impl<'de> Deserialize<'de> for CommandLaneEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CommandLaneEvent
impl PartialEq for CommandLaneEvent
Source§impl Serialize for CommandLaneEvent
impl Serialize for CommandLaneEvent
impl Eq for CommandLaneEvent
impl StructuralPartialEq for CommandLaneEvent
Auto Trait Implementations§
impl Freeze for CommandLaneEvent
impl RefUnwindSafe for CommandLaneEvent
impl Send for CommandLaneEvent
impl Sync for CommandLaneEvent
impl Unpin for CommandLaneEvent
impl UnsafeUnpin for CommandLaneEvent
impl UnwindSafe for CommandLaneEvent
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