pub struct CommandPlanSchema {
pub name: String,
pub authority_type: String,
pub source_inputs: Vec<InputVariantId>,
pub source_signals: Vec<SignalVariantId>,
pub transitions: Vec<TransitionId>,
pub effects: Vec<EffectVariantId>,
pub effect_closures: Vec<EffectClosureSchema>,
}Fields§
§name: String§source_inputs: Vec<InputVariantId>§source_signals: Vec<SignalVariantId>§transitions: Vec<TransitionId>§effects: Vec<EffectVariantId>§effect_closures: Vec<EffectClosureSchema>Trait Implementations§
Source§impl Clone for CommandPlanSchema
impl Clone for CommandPlanSchema
Source§fn clone(&self) -> CommandPlanSchema
fn clone(&self) -> CommandPlanSchema
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 CommandPlanSchema
impl Debug for CommandPlanSchema
impl Eq for CommandPlanSchema
Source§impl PartialEq for CommandPlanSchema
impl PartialEq for CommandPlanSchema
Source§fn eq(&self, other: &CommandPlanSchema) -> bool
fn eq(&self, other: &CommandPlanSchema) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CommandPlanSchema
Auto Trait Implementations§
impl Freeze for CommandPlanSchema
impl RefUnwindSafe for CommandPlanSchema
impl Send for CommandPlanSchema
impl Sync for CommandPlanSchema
impl Unpin for CommandPlanSchema
impl UnsafeUnpin for CommandPlanSchema
impl UnwindSafe for CommandPlanSchema
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.