[][src]Trait zkp_u256::MulInline

pub trait MulInline<Rhs>: Sized {
    pub fn mul_inline(&self, rhs: Rhs) -> Self;

    pub fn mul_assign_inline(&mut self, rhs: Rhs) { ... }
pub fn mul(&self, rhs: Rhs) -> Self { ... }
pub fn mul_assign(&mut self, rhs: Rhs) { ... } }

Required methods

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

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

Loading content...

Provided methods

pub fn mul_assign_inline(&mut self, rhs: Rhs)[src]

Note. Implementers must add the #[inline(always)] attribute By default it redirects to the non-assigned version

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

pub fn mul_assign(&mut self, rhs: Rhs)[src]

Loading content...

Implementors

impl MulInline<u64> for U256[src]

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

Loading content...