pub enum Uint128Concrete {
Operation(<UintOperationLibfunc<Uint128Traits> as GenericLibfunc>::Concrete),
Divmod(<UintDivmodLibfunc<Uint128Traits> as GenericLibfunc>::Concrete),
GuaranteeMul(<U128GuaranteeMulLibfunc as GenericLibfunc>::Concrete),
MulGuaranteeVerify(<U128MulGuaranteeVerifyLibfunc as GenericLibfunc>::Concrete),
Equal(<IntEqualLibfunc<Uint128Traits> as GenericLibfunc>::Concrete),
SquareRoot(<UintSquareRootLibfunc<Uint128Traits> as GenericLibfunc>::Concrete),
Const(<IntConstLibfunc<Uint128Traits> as GenericLibfunc>::Concrete),
FromFelt252(<Uint128sFromFelt252Libfunc as GenericLibfunc>::Concrete),
ToFelt252(<IntToFelt252Libfunc<Uint128Traits> as GenericLibfunc>::Concrete),
IsZero(<IsZeroLibfunc<Uint128Traits> as GenericLibfunc>::Concrete),
Bitwise(<UintBitwiseLibfunc<Uint128Traits> as GenericLibfunc>::Concrete),
ByteReverse(<U128ByteReverseLibfunc as GenericLibfunc>::Concrete),
}
Variants§
Operation(<UintOperationLibfunc<Uint128Traits> as GenericLibfunc>::Concrete)
Divmod(<UintDivmodLibfunc<Uint128Traits> as GenericLibfunc>::Concrete)
GuaranteeMul(<U128GuaranteeMulLibfunc as GenericLibfunc>::Concrete)
MulGuaranteeVerify(<U128MulGuaranteeVerifyLibfunc as GenericLibfunc>::Concrete)
Equal(<IntEqualLibfunc<Uint128Traits> as GenericLibfunc>::Concrete)
SquareRoot(<UintSquareRootLibfunc<Uint128Traits> as GenericLibfunc>::Concrete)
Const(<IntConstLibfunc<Uint128Traits> as GenericLibfunc>::Concrete)
FromFelt252(<Uint128sFromFelt252Libfunc as GenericLibfunc>::Concrete)
ToFelt252(<IntToFelt252Libfunc<Uint128Traits> as GenericLibfunc>::Concrete)
IsZero(<IsZeroLibfunc<Uint128Traits> as GenericLibfunc>::Concrete)
Bitwise(<UintBitwiseLibfunc<Uint128Traits> as GenericLibfunc>::Concrete)
ByteReverse(<U128ByteReverseLibfunc as GenericLibfunc>::Concrete)
Trait Implementations§
source§impl ConcreteLibfunc for Uint128Concrete
impl ConcreteLibfunc for Uint128Concrete
source§fn param_signatures(&self) -> &[ParamSignature]
fn param_signatures(&self) -> &[ParamSignature]
The parameter types and other information for the parameters for calling a library
function.
source§fn branch_signatures(&self) -> &[BranchSignature]
fn branch_signatures(&self) -> &[BranchSignature]
The output types and other information returning from a library function per branch.
source§fn fallthrough(&self) -> Option<usize>
fn fallthrough(&self) -> Option<usize>
The index of the fallthrough branch of the library function if any.
source§fn output_types(&self) -> Vec<Vec<ConcreteTypeId>>
fn output_types(&self) -> Vec<Vec<ConcreteTypeId>>
Returns the output types returning from a library function per branch.
Auto Trait Implementations§
impl Freeze for Uint128Concrete
impl RefUnwindSafe for Uint128Concrete
impl Send for Uint128Concrete
impl Sync for Uint128Concrete
impl Unpin for Uint128Concrete
impl UnwindSafe for Uint128Concrete
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§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