[][src]Struct casperlabs_contract_ffi::value::account::AccountActivity

pub struct AccountActivity { /* fields omitted */ }

Holds information about last usage time of specific action.

Methods

impl AccountActivity[src]

pub fn new(
    current_block_time: BlockTime,
    inactivity_period_limit: BlockTime
) -> AccountActivity
[src]

pub fn update_key_management_last_used(&mut self, last_used: BlockTime)[src]

pub fn update_deployment_last_used(&mut self, last_used: BlockTime)[src]

pub fn update_inactivity_period_limit(
    &mut self,
    new_inactivity_period_limit: BlockTime
)
[src]

pub fn key_management_last_used(&self) -> BlockTime[src]

pub fn deployment_last_used(&self) -> BlockTime[src]

pub fn inactivity_period_limit(&self) -> BlockTime[src]

Trait Implementations

impl ToBytes for AccountActivity[src]

impl FromBytes for AccountActivity[src]

impl PartialEq<AccountActivity> for AccountActivity[src]

impl Eq for AccountActivity[src]

impl Debug for AccountActivity[src]

impl Clone for AccountActivity[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for AccountActivity[src]

Auto Trait Implementations

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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.

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> Same<T> for T

type Output = T

Should always be Self