pub struct GraphInterrupt<S: StateSchema> {
pub node: String,
pub state: GraphState<S>,
}Fields§
§node: String§state: GraphState<S>Trait Implementations§
Source§impl<S: Clone + StateSchema> Clone for GraphInterrupt<S>
impl<S: Clone + StateSchema> Clone for GraphInterrupt<S>
Source§fn clone(&self) -> GraphInterrupt<S>
fn clone(&self) -> GraphInterrupt<S>
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 moreAuto Trait Implementations§
impl<S> Freeze for GraphInterrupt<S>where
S: Freeze,
impl<S> RefUnwindSafe for GraphInterrupt<S>where
S: RefUnwindSafe,
impl<S> Send for GraphInterrupt<S>
impl<S> Sync for GraphInterrupt<S>
impl<S> Unpin for GraphInterrupt<S>where
S: Unpin,
impl<S> UnsafeUnpin for GraphInterrupt<S>where
S: UnsafeUnpin,
impl<S> UnwindSafe for GraphInterrupt<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