pub struct ControlBehavior {
pub arithmetic_conditions: Option<ArithmeticConditions>,
pub decider_conditions: Option<DeciderConditions>,
pub filters: Option<Vec<ControlFilter>>,
pub is_on: Option<bool>,
}
Expand description
Reverse-engineered by hand, contains circuit network metadata
Fields§
§arithmetic_conditions: Option<ArithmeticConditions>
Used in arithmetic combinators.
decider_conditions: Option<DeciderConditions>
Used in decider combinators.
filters: Option<Vec<ControlFilter>>
Used in constant combinators.
is_on: Option<bool>
Used in constant combinators, optional. Default: true
Trait Implementations§
Source§impl Clone for ControlBehavior
impl Clone for ControlBehavior
Source§fn clone(&self) -> ControlBehavior
fn clone(&self) -> ControlBehavior
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 ControlBehavior
impl Debug for ControlBehavior
Source§impl<'de> Deserialize<'de> for ControlBehavior
impl<'de> Deserialize<'de> for ControlBehavior
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 ControlBehavior
impl PartialEq for ControlBehavior
Source§impl Serialize for ControlBehavior
impl Serialize for ControlBehavior
impl Eq for ControlBehavior
impl StructuralPartialEq for ControlBehavior
Auto Trait Implementations§
impl Freeze for ControlBehavior
impl RefUnwindSafe for ControlBehavior
impl Send for ControlBehavior
impl Sync for ControlBehavior
impl Unpin for ControlBehavior
impl UnwindSafe for ControlBehavior
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