pub struct HydraCommand {
pub command_type: String,
pub params: Metadata,
pub run_id: String,
pub step_id: u64,
}Expand description
A command from Hydra to a sister
Fields§
§command_type: StringCommand type (sister interprets this)
params: MetadataCommand parameters
run_id: StringHydra run ID (for receipt chain)
step_id: u64Step ID within the run
Trait Implementations§
Source§impl Clone for HydraCommand
impl Clone for HydraCommand
Source§fn clone(&self) -> HydraCommand
fn clone(&self) -> HydraCommand
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 HydraCommand
impl Debug for HydraCommand
Source§impl<'de> Deserialize<'de> for HydraCommand
impl<'de> Deserialize<'de> for HydraCommand
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
Auto Trait Implementations§
impl Freeze for HydraCommand
impl RefUnwindSafe for HydraCommand
impl Send for HydraCommand
impl Sync for HydraCommand
impl Unpin for HydraCommand
impl UnsafeUnpin for HydraCommand
impl UnwindSafe for HydraCommand
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