pub struct TriggerPrimitiveManifest {
pub id: String,
pub version: String,
pub kind: TriggerKind,
pub inputs: Vec<InputSpec>,
pub outputs: Vec<OutputSpec>,
pub parameters: Vec<ParameterSpec>,
pub execution: ExecutionSpec,
pub state: StateSpec,
pub side_effects: bool,
}Fields§
§id: String§version: String§kind: TriggerKind§inputs: Vec<InputSpec>§outputs: Vec<OutputSpec>§parameters: Vec<ParameterSpec>§execution: ExecutionSpec§state: StateSpec§side_effects: boolTrait Implementations§
Source§impl Clone for TriggerPrimitiveManifest
impl Clone for TriggerPrimitiveManifest
Source§fn clone(&self) -> TriggerPrimitiveManifest
fn clone(&self) -> TriggerPrimitiveManifest
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 moreSource§impl Debug for TriggerPrimitiveManifest
impl Debug for TriggerPrimitiveManifest
Source§impl PartialEq for TriggerPrimitiveManifest
impl PartialEq for TriggerPrimitiveManifest
Source§fn eq(&self, other: &TriggerPrimitiveManifest) -> bool
fn eq(&self, other: &TriggerPrimitiveManifest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TriggerPrimitiveManifest
Auto Trait Implementations§
impl Freeze for TriggerPrimitiveManifest
impl RefUnwindSafe for TriggerPrimitiveManifest
impl Send for TriggerPrimitiveManifest
impl Sync for TriggerPrimitiveManifest
impl Unpin for TriggerPrimitiveManifest
impl UnsafeUnpin for TriggerPrimitiveManifest
impl UnwindSafe for TriggerPrimitiveManifest
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