[][src]Trait eosio::CheckedMul

pub trait CheckedMul<Other = Self>: Sized {
    type Output;
    fn checked_mul(self, other: Other) -> Self::Output;
}

TODO docs

Associated Types

type Output

TODO docs

Loading content...

Required methods

fn checked_mul(self, other: Other) -> Self::Output

TODO docs

Loading content...

Implementors

impl CheckedMul<Asset> for Asset[src]

type Output = Result<Self, AssetOpError>

impl CheckedMul<i64> for Asset[src]

type Output = Option<Self>

impl CheckedMul<i128> for Asset[src]

type Output = Option<Self>

impl CheckedMul<isize> for Asset[src]

type Output = Option<Self>

impl CheckedMul<u64> for Asset[src]

type Output = Option<Self>

impl CheckedMul<u128> for Asset[src]

type Output = Option<Self>

impl CheckedMul<usize> for Asset[src]

type Output = Option<Self>

Loading content...