[][src]Struct eosio::PermissionLevel

pub struct PermissionLevel {
    pub actor: AccountName,
    pub permission: PermissionName,
}

A permission

Fields

actor: AccountName

TODO docs

permission: PermissionName

TODO docs

Trait Implementations

impl AsRef<PermissionLevel> for PermissionLevel[src]

impl Clone for PermissionLevel[src]

impl Copy for PermissionLevel[src]

impl Debug for PermissionLevel[src]

impl Default for PermissionLevel[src]

impl Display for PermissionLevel[src]

impl Eq for PermissionLevel[src]

impl FromStr for PermissionLevel[src]

type Err = ParsePermissionLevelError

The associated error which can be returned from parsing.

impl Hash for PermissionLevel[src]

impl NumBytes for PermissionLevel[src]

impl Ord for PermissionLevel[src]

impl PartialEq<PermissionLevel> for PermissionLevel[src]

impl PartialOrd<PermissionLevel> for PermissionLevel[src]

impl Read for PermissionLevel[src]

impl StructuralEq for PermissionLevel[src]

impl StructuralPartialEq for PermissionLevel[src]

impl<'_> TryFrom<&'_ str> for PermissionLevel[src]

type Error = ParsePermissionLevelError

The type returned in the event of a conversion error.

impl TryFrom<String> for PermissionLevel[src]

type Error = ParsePermissionLevelError

The type returned in the event of a conversion error.

impl Write for PermissionLevel[src]

Auto Trait Implementations

impl Send for PermissionLevel

impl Sync for PermissionLevel

impl Unpin for PermissionLevel

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.