pub enum OpsKind<BO, B, S, C, const N: usize> {
Tracked(OpsPrep<BO, B, S, C, N, Tracked>),
UnTracked(OpsPrep<BO, B, S, C, N, UnTracked>),
}
Expand description
Enum used before finishing tracked and untracked operations.
Variants§
Tracked(OpsPrep<BO, B, S, C, N, Tracked>)
Tracked operation preparation.
UnTracked(OpsPrep<BO, B, S, C, N, UnTracked>)
Untracked operation preparation.
Auto Trait Implementations§
impl<BO, B, S, C, const N: usize> Freeze for OpsKind<BO, B, S, C, N>where
BO: Freeze,
impl<BO, B, S, C, const N: usize> !RefUnwindSafe for OpsKind<BO, B, S, C, N>
impl<BO, B, S, C, const N: usize> Send for OpsKind<BO, B, S, C, N>
impl<BO, B, S, C, const N: usize> !Sync for OpsKind<BO, B, S, C, N>
impl<BO, B, S, C, const N: usize> Unpin for OpsKind<BO, B, S, C, N>
impl<BO, B, S, C, const N: usize> !UnwindSafe for OpsKind<BO, B, S, C, 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