pub struct CompiledFlowStep {
pub id: String,
pub tool: String,
pub inputs: HashMap<String, String>,
pub outputs: Vec<String>,
pub content_hash: [u8; 32],
}Fields§
§id: String§tool: String§inputs: HashMap<String, String>§outputs: Vec<String>§content_hash: [u8; 32]Trait Implementations§
Source§impl Clone for CompiledFlowStep
impl Clone for CompiledFlowStep
Source§fn clone(&self) -> CompiledFlowStep
fn clone(&self) -> CompiledFlowStep
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 CompiledFlowStep
impl Debug for CompiledFlowStep
Source§impl<'de> Deserialize<'de> for CompiledFlowStep
impl<'de> Deserialize<'de> for CompiledFlowStep
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 CompiledFlowStep
impl PartialEq for CompiledFlowStep
Source§impl Serialize for CompiledFlowStep
impl Serialize for CompiledFlowStep
impl StructuralPartialEq for CompiledFlowStep
Auto Trait Implementations§
impl Freeze for CompiledFlowStep
impl RefUnwindSafe for CompiledFlowStep
impl Send for CompiledFlowStep
impl Sync for CompiledFlowStep
impl Unpin for CompiledFlowStep
impl UnwindSafe for CompiledFlowStep
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