pub struct StateDoc<S: 'static> {
pub descriptor: StateDescriptor<S>,
pub is_root: bool,
}Expand description
Exported state metadata for one graph node.
Fields§
§descriptor: StateDescriptor<S>Underlying descriptor from statum.
is_root: boolTrue when the exported topology has no incoming edge for this state.
Trait Implementations§
impl<S: Copy + 'static> Copy for StateDoc<S>
impl<S: Eq + 'static> Eq for StateDoc<S>
impl<S: 'static> StructuralPartialEq for StateDoc<S>
Auto Trait Implementations§
impl<S> Freeze for StateDoc<S>where
S: Freeze,
impl<S> RefUnwindSafe for StateDoc<S>where
S: RefUnwindSafe,
impl<S> Send for StateDoc<S>where
S: Send,
impl<S> Sync for StateDoc<S>where
S: Sync,
impl<S> Unpin for StateDoc<S>where
S: Unpin,
impl<S> UnsafeUnpin for StateDoc<S>where
S: UnsafeUnpin,
impl<S> UnwindSafe for StateDoc<S>where
S: UnwindSafe,
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