[][src]Struct near_runtime_fees::AccessKeyCreationConfig

pub struct AccessKeyCreationConfig {
    pub full_access_cost: Fee,
    pub function_call_cost: Fee,
    pub function_call_cost_per_byte: Fee,
}

Describes the cost of creating an access key.

Fields

full_access_cost: Fee

Base cost of creating a full access access-key.

function_call_cost: Fee

Base cost of creating an access-key restricted to specific functions.

function_call_cost_per_byte: Fee

Cost per byte of method_names of creating a restricted access-key.

Trait Implementations

impl Clone for AccessKeyCreationConfig[src]

impl Debug for AccessKeyCreationConfig[src]

impl<'de> Deserialize<'de> for AccessKeyCreationConfig[src]

impl Eq for AccessKeyCreationConfig[src]

impl Hash for AccessKeyCreationConfig[src]

impl PartialEq<AccessKeyCreationConfig> for AccessKeyCreationConfig[src]

impl Serialize for AccessKeyCreationConfig[src]

impl StructuralEq for AccessKeyCreationConfig[src]

impl StructuralPartialEq for AccessKeyCreationConfig[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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, 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.