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

pub struct CallSite {
    pub call_type: CallSite_Type,
    pub instance_id: u32,
    pub method_id: u32,
    pub interface: String,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

call_type: CallSite_Typeinstance_id: u32method_id: u32interface: Stringunknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl CallSite[src]

pub fn new() -> CallSite[src]

pub fn get_call_type(&self) -> CallSite_Type[src]

pub fn clear_call_type(&mut self)[src]

pub fn set_call_type(&mut self, v: CallSite_Type)[src]

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

pub fn clear_instance_id(&mut self)[src]

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

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

pub fn clear_method_id(&mut self)[src]

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

pub fn get_interface(&self) -> &str[src]

pub fn clear_interface(&mut self)[src]

pub fn set_interface(&mut self, v: String)[src]

pub fn mut_interface(&mut self) -> &mut String[src]

pub fn take_interface(&mut self) -> String[src]

Trait Implementations

impl Clear for CallSite[src]

impl Clone for CallSite[src]

impl Debug for CallSite[src]

impl Default for CallSite[src]

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

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

impl Message for CallSite[src]

impl PartialEq<CallSite> for CallSite[src]

impl ProtobufValue for CallSite[src]

impl Serialize for CallSite[src]

impl StructuralPartialEq for CallSite[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>,