pub struct WhileClause {
pub ref_id: String,
pub op: WhileOp,
pub value: f64,
}Expand description
Continuous lifecycle gate on another signal’s value.
while:
ref: link_state
op: ">"
value: 0Fields§
§ref_id: String§op: WhileOp§value: f64Trait Implementations§
Source§impl Clone for WhileClause
impl Clone for WhileClause
Source§fn clone(&self) -> WhileClause
fn clone(&self) -> WhileClause
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 WhileClause
impl Debug for WhileClause
Source§impl<'de> Deserialize<'de> for WhileClause
impl<'de> Deserialize<'de> for WhileClause
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
Auto Trait Implementations§
impl Freeze for WhileClause
impl RefUnwindSafe for WhileClause
impl Send for WhileClause
impl Sync for WhileClause
impl Unpin for WhileClause
impl UnsafeUnpin for WhileClause
impl UnwindSafe for WhileClause
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