[][src]Struct exonum::messages::schema::base::AnyTx

pub struct AnyTx {
    pub call_info: SingularPtrField<CallInfo>,
    pub arguments: Vec<u8>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

call_info: SingularPtrField<CallInfo>arguments: Vec<u8>unknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl AnyTx[src]

pub fn new() -> AnyTx[src]

pub fn get_call_info(&self) -> &CallInfo[src]

pub fn clear_call_info(&mut self)[src]

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

pub fn set_call_info(&mut self, v: CallInfo)[src]

pub fn mut_call_info(&mut self) -> &mut CallInfo[src]

pub fn take_call_info(&mut self) -> CallInfo[src]

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

pub fn clear_arguments(&mut self)[src]

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

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

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

Trait Implementations

impl Clear for AnyTx[src]

impl Clone for AnyTx[src]

impl Debug for AnyTx[src]

impl Default for AnyTx[src]

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

impl<'de> Deserialize<'de> for AnyTx[src]

impl Message for AnyTx[src]

impl PartialEq<AnyTx> for AnyTx[src]

impl ProtobufValue for AnyTx[src]

impl Serialize for AnyTx[src]

impl StructuralPartialEq for AnyTx[src]

Auto Trait Implementations

impl RefUnwindSafe for AnyTx

impl Send for AnyTx

impl Sync for AnyTx

impl Unpin for AnyTx

impl UnwindSafe for AnyTx

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> Clear for T where
    T: InitializableFromZeroed + ?Sized

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> InitializableFromZeroed for T where
    T: Default

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

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