pub enum NextNodeResult {
Over,
Wait,
Error(String),
Nodes(Vec<Node>),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NextNodeResult
impl RefUnwindSafe for NextNodeResult
impl Send for NextNodeResult
impl Sync for NextNodeResult
impl Unpin for NextNodeResult
impl UnwindSafe for NextNodeResult
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