[][src]Trait eosio::CheckedRem

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

TODO docs

Associated Types

type Output

TODO docs

Loading content...

Required methods

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

TODO docs

Loading content...

Implementors

impl CheckedRem<Asset> for Asset[src]

type Output = Result<Self, AssetOpError>

impl CheckedRem<i64> for Asset[src]

type Output = Option<Self>

impl CheckedRem<i128> for Asset[src]

type Output = Option<Self>

impl CheckedRem<isize> for Asset[src]

type Output = Option<Self>

impl CheckedRem<u64> for Asset[src]

type Output = Option<Self>

impl CheckedRem<u128> for Asset[src]

type Output = Option<Self>

impl CheckedRem<usize> for Asset[src]

type Output = Option<Self>

Loading content...