[][src]Struct casperlabs_engine_grpc_server::engine_server::transforms::TransformEntry

pub struct TransformEntry {
    pub key: SingularPtrField<Key>,
    pub transform: SingularPtrField<Transform>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

key: SingularPtrField<Key>transform: SingularPtrField<Transform>unknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl TransformEntry[src]

pub fn new() -> TransformEntry[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_transform(&self) -> &Transform[src]

pub fn clear_transform(&mut self)[src]

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

pub fn set_transform(&mut self, v: Transform)[src]

pub fn mut_transform(&mut self) -> &mut Transform[src]

pub fn take_transform(&mut self) -> Transform[src]

Trait Implementations

impl Clear for TransformEntry[src]

impl Clone for TransformEntry[src]

impl Debug for TransformEntry[src]

impl Default for TransformEntry[src]

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

impl From<(Key, Transform)> for TransformEntry[src]

impl Message for TransformEntry[src]

impl PartialEq<TransformEntry> for TransformEntry[src]

impl ProtobufValue for TransformEntry[src]

impl StructuralPartialEq for TransformEntry[src]

impl TryFrom<TransformEntry> for (Key, Transform)[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, 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>,