[][src]Struct ttrpc::ttrpc::Any

pub struct Any {
    pub type_url: String,
    pub value: Vec<u8>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

type_url: Stringvalue: Vec<u8>unknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl Any[src]

pub fn new() -> Any[src]

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

pub fn clear_type_url(&mut self)[src]

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

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

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

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

pub fn clear_value(&mut self)[src]

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

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

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

Trait Implementations

impl Clear for Any[src]

impl Clone for Any[src]

impl Debug for Any[src]

impl Default for Any[src]

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

impl Message for Any[src]

impl PartialEq<Any> for Any[src]

impl ProtobufValue for Any[src]

impl StructuralPartialEq for Any[src]

Auto Trait Implementations

impl RefUnwindSafe for Any

impl Send for Any

impl Sync for Any

impl Unpin for Any

impl UnwindSafe for Any

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