[][src]Struct exonum::messages::schema::errors::ExecutionStatus

pub struct ExecutionStatus {
    pub result: Option<ExecutionStatus_oneof_result>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

result: Option<ExecutionStatus_oneof_result>unknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl ExecutionStatus[src]

pub fn new() -> ExecutionStatus[src]

pub fn get_ok(&self) -> &Empty[src]

pub fn clear_ok(&mut self)[src]

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

pub fn set_ok(&mut self, v: Empty)[src]

pub fn mut_ok(&mut self) -> &mut Empty[src]

pub fn take_ok(&mut self) -> Empty[src]

pub fn get_error(&self) -> &ExecutionError[src]

pub fn clear_error(&mut self)[src]

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

pub fn set_error(&mut self, v: ExecutionError)[src]

pub fn mut_error(&mut self) -> &mut ExecutionError[src]

pub fn take_error(&mut self) -> ExecutionError[src]

Trait Implementations

impl Clear for ExecutionStatus[src]

impl Clone for ExecutionStatus[src]

impl Debug for ExecutionStatus[src]

impl Default for ExecutionStatus[src]

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

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

impl Message for ExecutionStatus[src]

impl PartialEq<ExecutionStatus> for ExecutionStatus[src]

impl ProtobufValue for ExecutionStatus[src]

impl Serialize for ExecutionStatus[src]

impl StructuralPartialEq for ExecutionStatus[src]

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