pub struct Ops<S, const N: usize> {
pub parents: [Option<Arc<Node>>; N],
pub node: Arc<Node>,
pub state: S,
}
Expand description
Operation containing its parent nodes, its own node and the backward step state.
Fields§
§parents: [Option<Arc<Node>>; N]
Parents nodes.
node: Arc<Node>
The node.
state: S
The state.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<S, const N: usize> Freeze for Ops<S, N>where
S: Freeze,
impl<S, const N: usize> !RefUnwindSafe for Ops<S, N>
impl<S, const N: usize> Send for Ops<S, N>where
S: Send,
impl<S, const N: usize> Sync for Ops<S, N>where
S: Sync,
impl<S, const N: usize> Unpin for Ops<S, N>where
S: Unpin,
impl<S, const N: usize> !UnwindSafe for Ops<S, N>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more