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