[][src]Trait zkp_u256::SubFromFullInline

pub trait SubFromFullInline<Rhs> {
    type High;
    pub fn sub_from_full_assign_inline(&mut self, rhs: Rhs) -> Self::High;

    pub fn sub_from_full_assign(&mut self, rhs: Rhs) -> Self::High { ... }
}

Associated Types

Loading content...

Required methods

pub fn sub_from_full_assign_inline(&mut self, rhs: Rhs) -> Self::High[src]

Note. Implementers must add the #[inline(always)] attribute

Loading content...

Provided methods

pub fn sub_from_full_assign(&mut self, rhs: Rhs) -> Self::High[src]

Loading content...

Implementors

impl<'_> SubFromFullInline<&'_ U256> for U256[src]

type High = u64

Loading content...