pub enum WalkerState<S, Ix = DefaultIx> {
Done,
Found(Step<S, Ix>),
NotFound(Rc<Step<S, Ix>>),
Cutoff,
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<S, Ix> Freeze for WalkerState<S, Ix>
impl<S, Ix> RefUnwindSafe for WalkerState<S, Ix>where
S: RefUnwindSafe,
Ix: RefUnwindSafe,
impl<S, Ix = u32> !Send for WalkerState<S, Ix>
impl<S, Ix = u32> !Sync for WalkerState<S, Ix>
impl<S, Ix> Unpin for WalkerState<S, Ix>
impl<S, Ix> UnwindSafe for WalkerState<S, Ix>
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