[][src]Struct eosio::ExtendedSymbol

pub struct ExtendedSymbol {
    pub symbol: Symbol,
    pub contract: AccountName,
}

Extended asset which stores the information of the owner of the symbol https://github.com/EOSIO/eosio.cdt/blob/4985359a30da1f883418b7133593f835927b8046/libraries/eosiolib/core/eosio/symbol.hpp#L372-L450

Fields

symbol: Symbol

The symbol

contract: AccountName

The token contract hosting the symbol

Trait Implementations

impl Clone for ExtendedSymbol[src]

impl Copy for ExtendedSymbol[src]

impl Debug for ExtendedSymbol[src]

impl Default for ExtendedSymbol[src]

impl Display for ExtendedSymbol[src]

impl NumBytes for ExtendedSymbol[src]

impl PartialEq<ExtendedSymbol> for ExtendedSymbol[src]

impl Read for ExtendedSymbol[src]

impl StructuralPartialEq for ExtendedSymbol[src]

impl Write for ExtendedSymbol[src]

Auto Trait Implementations

impl Send for ExtendedSymbol

impl Sync for ExtendedSymbol

impl Unpin for ExtendedSymbol

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.