pub(in rotation) enum EvalValueAbstract<B>where
B: RotationBackend,{
Bool(B::Bool),
Int(B::Int),
Float(B::Float),
}Variants§
Implementations§
Auto Trait Implementations§
impl<B> Freeze for EvalValueAbstract<B>where
<B as RotationBackend>::Bool: Freeze,
<B as RotationBackend>::Int: Freeze,
<B as RotationBackend>::Float: Freeze,
impl<B> RefUnwindSafe for EvalValueAbstract<B>where
<B as RotationBackend>::Bool: RefUnwindSafe,
<B as RotationBackend>::Int: RefUnwindSafe,
<B as RotationBackend>::Float: RefUnwindSafe,
impl<B> Send for EvalValueAbstract<B>where
<B as RotationBackend>::Bool: Send,
<B as RotationBackend>::Int: Send,
<B as RotationBackend>::Float: Send,
impl<B> Sync for EvalValueAbstract<B>where
<B as RotationBackend>::Bool: Sync,
<B as RotationBackend>::Int: Sync,
<B as RotationBackend>::Float: Sync,
impl<B> Unpin for EvalValueAbstract<B>where
<B as RotationBackend>::Bool: Unpin,
<B as RotationBackend>::Int: Unpin,
<B as RotationBackend>::Float: Unpin,
impl<B> UnsafeUnpin for EvalValueAbstract<B>where
<B as RotationBackend>::Bool: UnsafeUnpin,
<B as RotationBackend>::Int: UnsafeUnpin,
<B as RotationBackend>::Float: UnsafeUnpin,
impl<B> UnwindSafe for EvalValueAbstract<B>where
<B as RotationBackend>::Bool: UnwindSafe,
<B as RotationBackend>::Int: UnwindSafe,
<B as RotationBackend>::Float: UnwindSafe,
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