pub enum NodeState<'a> {
Error(&'a str),
Creating,
Suspended,
Idle,
Running,
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for NodeState<'a>
impl<'a> Send for NodeState<'a>
impl<'a> Sync for NodeState<'a>
impl<'a> Unpin for NodeState<'a>
impl<'a> UnwindSafe for NodeState<'a>
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