pub struct BigUintPrinter<M: ManagedTypeApi> {
pub value: BigUint<M>,
}
Expand description
Only seems to be used in tests, we can probably remove it.
Fields§
§value: BigUint<M>
Trait Implementations§
Auto Trait Implementations§
impl<M> Freeze for BigUintPrinter<M>
impl<M> RefUnwindSafe for BigUintPrinter<M>
impl<M> Send for BigUintPrinter<M>
impl<M> Sync for BigUintPrinter<M>
impl<M> Unpin for BigUintPrinter<M>
impl<M> UnwindSafe for BigUintPrinter<M>
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
Source§impl<T> InterpretableFrom<T> for T
impl<T> InterpretableFrom<T> for T
fn interpret_from(from: T, _context: &InterpreterContext) -> T
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