[][src]Trait eosio::CheckedDiv

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

TODO docs

Associated Types

type Output

TODO docs

Loading content...

Required methods

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

TODO docs

Loading content...

Implementors

impl CheckedDiv<Asset> for Asset[src]

type Output = Result<Self, AssetDivOpError>

impl CheckedDiv<i64> for Asset[src]

type Output = Option<Self>

impl CheckedDiv<i128> for Asset[src]

type Output = Option<Self>

impl CheckedDiv<isize> for Asset[src]

type Output = Option<Self>

impl CheckedDiv<u64> for Asset[src]

type Output = Option<Self>

impl CheckedDiv<u128> for Asset[src]

type Output = Option<Self>

impl CheckedDiv<usize> for Asset[src]

type Output = Option<Self>

Loading content...