pub struct TransitionRule {
pub name: String,
pub condition: String,
pub action: String,
pub priority: u32,
}Expand description
Rules governing transitions.
Fields§
§name: String§condition: String§action: String§priority: u32Trait Implementations§
Source§impl Clone for TransitionRule
impl Clone for TransitionRule
Source§fn clone(&self) -> TransitionRule
fn clone(&self) -> TransitionRule
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 TransitionRule
impl Debug for TransitionRule
Source§impl<'de> Deserialize<'de> for TransitionRule
impl<'de> Deserialize<'de> for TransitionRule
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 TransitionRule
impl RefUnwindSafe for TransitionRule
impl Send for TransitionRule
impl Sync for TransitionRule
impl Unpin for TransitionRule
impl UnsafeUnpin for TransitionRule
impl UnwindSafe for TransitionRule
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