pub struct StateNode {
pub id: String,
pub typ: String,
pub kind: String,
pub initial: Option<InitialValue>,
pub exported: bool,
}Expand description
A parsed state definition.
Fields§
§id: String§typ: String§kind: String§initial: Option<InitialValue>§exported: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for StateNode
impl RefUnwindSafe for StateNode
impl Send for StateNode
impl Sync for StateNode
impl Unpin for StateNode
impl UnsafeUnpin for StateNode
impl UnwindSafe for StateNode
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