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

pub struct NamedKey {
    pub name: String,
    pub key: SingularPtrField<Key>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

name: Stringkey: SingularPtrField<Key>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl NamedKey[src]

pub fn new() -> NamedKey[src]

pub fn get_name(&self) -> &str[src]

pub fn clear_name(&mut self)[src]

pub fn set_name(&mut self, v: String)[src]

pub fn mut_name(&mut self) -> &mut String[src]

pub fn take_name(&mut self) -> String[src]

pub fn get_key(&self) -> &Key[src]

pub fn clear_key(&mut self)[src]

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

pub fn set_key(&mut self, v: Key)[src]

pub fn mut_key(&mut self) -> &mut Key[src]

pub fn take_key(&mut self) -> Key[src]

Trait Implementations

impl Clear for NamedKey[src]

impl Clone for NamedKey[src]

impl Debug for NamedKey[src]

impl Default for NamedKey[src]

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

impl From<(String, Key)> for NamedKey[src]

impl Message for NamedKey[src]

impl PartialEq<NamedKey> for NamedKey[src]

impl ProtobufValue for NamedKey[src]

impl StructuralPartialEq for NamedKey[src]

impl TryFrom<NamedKey> for (String, Key)[src]

type Error = ParsingError

The type returned in the event of a conversion error.

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> 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>,