[][src]Trait eosio::CheckedSub

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

TODO docs

Associated Types

type Output

TODO docs

Loading content...

Required methods

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

TODO docs

Loading content...

Implementors

impl CheckedSub<Asset> for Asset[src]

type Output = Result<Self, AssetOpError>

impl CheckedSub<i64> for Asset[src]

type Output = Option<Self>

impl CheckedSub<i128> for Asset[src]

type Output = Option<Self>

impl CheckedSub<isize> for Asset[src]

type Output = Option<Self>

impl CheckedSub<u64> for Asset[src]

type Output = Option<Self>

impl CheckedSub<u128> for Asset[src]

type Output = Option<Self>

impl CheckedSub<usize> for Asset[src]

type Output = Option<Self>

Loading content...