[][src]Struct casper_engine_grpc_server::engine_server::state::Key

pub struct Key {
    pub value: Option<Key_oneof_value>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

value: Option<Key_oneof_value>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl Key[src]

pub fn new() -> Key[src]

pub fn get_address(&self) -> &Key_Address[src]

pub fn clear_address(&mut self)[src]

pub fn has_address(&self) -> bool[src]

pub fn set_address(&mut self, v: Key_Address)[src]

pub fn mut_address(&mut self) -> &mut Key_Address[src]

pub fn take_address(&mut self) -> Key_Address[src]

pub fn get_hash(&self) -> &Key_Hash[src]

pub fn clear_hash(&mut self)[src]

pub fn has_hash(&self) -> bool[src]

pub fn set_hash(&mut self, v: Key_Hash)[src]

pub fn mut_hash(&mut self) -> &mut Key_Hash[src]

pub fn take_hash(&mut self) -> Key_Hash[src]

pub fn get_uref(&self) -> &Key_URef[src]

pub fn clear_uref(&mut self)[src]

pub fn has_uref(&self) -> bool[src]

pub fn set_uref(&mut self, v: Key_URef)[src]

pub fn mut_uref(&mut self) -> &mut Key_URef[src]

pub fn take_uref(&mut self) -> Key_URef[src]

pub fn get_transfer(&self) -> &TransferAddr[src]

pub fn clear_transfer(&mut self)[src]

pub fn has_transfer(&self) -> bool[src]

pub fn set_transfer(&mut self, v: TransferAddr)[src]

pub fn mut_transfer(&mut self) -> &mut TransferAddr[src]

pub fn take_transfer(&mut self) -> TransferAddr[src]

pub fn get_deploy_info(&self) -> &DeployHash[src]

pub fn clear_deploy_info(&mut self)[src]

pub fn has_deploy_info(&self) -> bool[src]

pub fn set_deploy_info(&mut self, v: DeployHash)[src]

pub fn mut_deploy_info(&mut self) -> &mut DeployHash[src]

pub fn take_deploy_info(&mut self) -> DeployHash[src]

Trait Implementations

impl Clear for Key[src]

impl Clone for Key[src]

impl Debug for Key[src]

impl Default for Key[src]

impl<'a> Default for &'a Key[src]

impl From<Key> for Key[src]

impl Message for Key[src]

impl PartialEq<Key> for Key[src]

impl ProtobufValue for Key[src]

impl StructuralPartialEq for Key[src]

impl TryFrom<Key> for Key[src]

type Error = ParsingError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Key

impl Send for Key

impl Sync for Key

impl Unpin for Key

impl UnwindSafe for Key

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> FromBits<T> for T

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,