pub enum HandoffAction {
SubmitPrefill {
handoff_id: HandoffId,
},
ReserveDestination {
handoff_id: HandoffId,
},
StartTransfer {
handoff_id: HandoffId,
delay_ms: f64,
},
ActivateDestination {
handoff_id: HandoffId,
},
ReleaseSource {
handoff_id: HandoffId,
},
CancelSource {
handoff_id: HandoffId,
},
CancelDestination {
handoff_id: HandoffId,
},
Complete {
handoff_id: HandoffId,
},
}Variants§
SubmitPrefill
ReserveDestination
StartTransfer
ActivateDestination
ReleaseSource
CancelSource
CancelDestination
Complete
Trait Implementations§
Source§impl Clone for HandoffAction
impl Clone for HandoffAction
Source§fn clone(&self) -> HandoffAction
fn clone(&self) -> HandoffAction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for HandoffAction
Source§impl Debug for HandoffAction
impl Debug for HandoffAction
Source§impl<'de> Deserialize<'de> for HandoffAction
impl<'de> Deserialize<'de> for HandoffAction
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 HandoffAction
impl PartialEq for HandoffAction
Source§impl Serialize for HandoffAction
impl Serialize for HandoffAction
impl StructuralPartialEq for HandoffAction
Auto Trait Implementations§
impl Freeze for HandoffAction
impl RefUnwindSafe for HandoffAction
impl Send for HandoffAction
impl Sync for HandoffAction
impl Unpin for HandoffAction
impl UnsafeUnpin for HandoffAction
impl UnwindSafe for HandoffAction
Blanket Implementations§
impl<T> BlockMetadata for T
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