[][src]Trait eosio::CheckedAdd

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

TODO docs

Associated Types

type Output

TODO docs

Loading content...

Required methods

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

TODO docs

Loading content...

Implementors

impl CheckedAdd<Asset> for Asset[src]

type Output = Result<Self, AssetOpError>

impl CheckedAdd<i64> for Asset[src]

type Output = Option<Self>

impl CheckedAdd<i128> for Asset[src]

type Output = Option<Self>

impl CheckedAdd<isize> for Asset[src]

type Output = Option<Self>

impl CheckedAdd<u64> for Asset[src]

type Output = Option<Self>

impl CheckedAdd<u128> for Asset[src]

type Output = Option<Self>

impl CheckedAdd<usize> for Asset[src]

type Output = Option<Self>

Loading content...