[][src]Struct casperlabs_engine_grpc_server::engine_server::ipc::OpEntry

pub struct OpEntry {
    pub key: SingularPtrField<Key>,
    pub operation: SingularPtrField<Op>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

key: SingularPtrField<Key>operation: SingularPtrField<Op>unknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl OpEntry[src]

pub fn new() -> OpEntry[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]

pub fn get_operation(&self) -> &Op[src]

pub fn clear_operation(&mut self)[src]

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

pub fn set_operation(&mut self, v: Op)[src]

pub fn mut_operation(&mut self) -> &mut Op[src]

pub fn take_operation(&mut self) -> Op[src]

Trait Implementations

impl Clear for OpEntry[src]

impl Clone for OpEntry[src]

impl Debug for OpEntry[src]

impl Default for OpEntry[src]

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

impl From<(Key, Op)> for OpEntry[src]

impl Message for OpEntry[src]

impl PartialEq<OpEntry> for OpEntry[src]

impl ProtobufValue for OpEntry[src]

impl StructuralPartialEq for OpEntry[src]

Auto Trait Implementations

impl RefUnwindSafe for OpEntry

impl Send for OpEntry

impl Sync for OpEntry

impl Unpin for OpEntry

impl UnwindSafe for OpEntry

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