pub struct ConstEvalSuffix<F: Field> {
pub suffix: usize,
pub value: F,
pub value_at_inf: F,
}
Fields§
§suffix: usize
§value: F
§value_at_inf: F
Trait Implementations§
Source§impl<F: Default + Field> Default for ConstEvalSuffix<F>
impl<F: Default + Field> Default for ConstEvalSuffix<F>
Source§fn default() -> ConstEvalSuffix<F>
fn default() -> ConstEvalSuffix<F>
Returns the “default value” for a type. Read more
impl<F: Eq + Field> Eq for ConstEvalSuffix<F>
impl<F: Field> StructuralPartialEq for ConstEvalSuffix<F>
Auto Trait Implementations§
impl<F> Freeze for ConstEvalSuffix<F>
impl<F> RefUnwindSafe for ConstEvalSuffix<F>
impl<F> Send for ConstEvalSuffix<F>
impl<F> Sync for ConstEvalSuffix<F>
impl<F> Unpin for ConstEvalSuffix<F>
impl<F> UnwindSafe for ConstEvalSuffix<F>
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