pub struct Step<S, Ix> {
pub caller: Option<Rc<Step<S, Ix>>>,
pub idx: NodeIndex<Ix>,
pub rel: Option<EdgeIndex>,
pub state: S,
}
Fields§
§caller: Option<Rc<Step<S, Ix>>>
§idx: NodeIndex<Ix>
§rel: Option<EdgeIndex>
§state: S
Trait Implementations§
Auto Trait Implementations§
impl<S, Ix> Freeze for Step<S, Ix>
impl<S, Ix> RefUnwindSafe for Step<S, Ix>where
S: RefUnwindSafe,
Ix: RefUnwindSafe,
impl<S, Ix> !Send for Step<S, Ix>
impl<S, Ix> !Sync for Step<S, Ix>
impl<S, Ix> Unpin for Step<S, Ix>
impl<S, Ix> UnwindSafe for Step<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