Struct protobuf::well_known_types::Option[][src]

pub struct Option {
    pub name: String,
    pub value: SingularPtrField<Any>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

name: Stringvalue: SingularPtrField<Any>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl Option[src]

pub fn new() -> Option[src]

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

pub fn clear_name(&mut self)[src]

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

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

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

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

pub fn clear_value(&mut self)[src]

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

pub fn set_value(&mut self, v: Any)[src]

pub fn mut_value(&mut self) -> &mut Any[src]

pub fn take_value(&mut self) -> Any[src]

Trait Implementations

impl Clear for Option[src]

impl Clone for Option[src]

impl Debug for Option[src]

impl Default for Option[src]

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

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

impl Message for Option[src]

impl PartialEq<Option> for Option[src]

impl ProtobufValue for Option[src]

impl Serialize for Option[src]

impl StructuralPartialEq for Option[src]

Auto Trait Implementations

impl RefUnwindSafe for Option

impl Send for Option

impl Sync for Option

impl Unpin for Option

impl UnwindSafe for Option

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.