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

pub struct Account_AssociatedKey {
    pub public_key: Vec<u8>,
    pub weight: u32,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

public_key: Vec<u8>weight: u32unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl Account_AssociatedKey[src]

pub fn new() -> Account_AssociatedKey[src]

pub fn get_public_key(&self) -> &[u8][src]

pub fn clear_public_key(&mut self)[src]

pub fn set_public_key(&mut self, v: Vec<u8>)[src]

pub fn mut_public_key(&mut self) -> &mut Vec<u8>[src]

pub fn take_public_key(&mut self) -> Vec<u8>[src]

pub fn get_weight(&self) -> u32[src]

pub fn clear_weight(&mut self)[src]

pub fn set_weight(&mut self, v: u32)[src]

Trait Implementations

impl Clear for Account_AssociatedKey[src]

impl Clone for Account_AssociatedKey[src]

impl Debug for Account_AssociatedKey[src]

impl Default for Account_AssociatedKey[src]

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

impl<'_, '_> From<(&'_ AccountHash, &'_ Weight)> for Account_AssociatedKey[src]

impl Message for Account_AssociatedKey[src]

impl PartialEq<Account_AssociatedKey> for Account_AssociatedKey[src]

impl ProtobufValue for Account_AssociatedKey[src]

impl StructuralPartialEq for Account_AssociatedKey[src]

impl TryFrom<Account_AssociatedKey> for (AccountHash, Weight)[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>,