[][src]Struct protobuf::singular::SingularField

pub struct SingularField<T> { /* fields omitted */ }

Methods

impl<T> SingularField<T>[src]

pub fn some(value: T) -> SingularField<T>[src]

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

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

pub fn into_option(self) -> Option<T>[src]

pub fn as_ref<'a>(&'a self) -> Option<&'a T>[src]

pub fn as_mut<'a>(&'a mut self) -> Option<&'a mut T>[src]

pub fn get_ref<'a>(&'a self) -> &'a T[src]

pub fn get_mut_ref<'a>(&'a mut self) -> &'a mut T[src]

pub fn unwrap(self) -> T[src]

pub fn unwrap_or(self, def: T) -> T[src]

pub fn unwrap_or_else<F>(self, f: F) -> T where
    F: FnOnce() -> T, 
[src]

pub fn map<U, F>(self, f: F) -> SingularPtrField<U> where
    F: FnOnce(T) -> U, 
[src]

pub fn iter<'a>(&'a self) -> IntoIter<&'a T>[src]

pub fn mut_iter<'a>(&'a mut self) -> IntoIter<&'a mut T>[src]

pub fn clear(&mut self)[src]

impl<T: Default> SingularField<T>[src]

pub fn none() -> SingularField<T>[src]

pub fn from_option(option: Option<T>) -> SingularField<T>[src]

pub fn take(&mut self) -> Option<T>[src]

impl<T: Default + Clear> SingularField<T>[src]

pub fn unwrap_or_default(self) -> T[src]

pub fn set_default<'a>(&'a mut self) -> &'a mut T[src]

Trait Implementations

impl<T: Default> Default for SingularField<T>[src]

impl<T: Clone + Default> Clone for SingularField<T>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T: Eq> Eq for SingularField<T>[src]

impl<T: PartialEq> PartialEq<SingularField<T>> for SingularField<T>[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl<'a, T> IntoIterator for &'a SingularField<T>[src]

type Item = &'a T

The type of the elements being iterated over.

type IntoIter = IntoIter<&'a T>

Which kind of iterator are we turning this into?

impl<T: Debug> Debug for SingularField<T>[src]

impl<T: Hash> Hash for SingularField<T>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl<T> Send for SingularField<T> where
    T: Send

impl<T> Sync for SingularField<T> where
    T: Sync

Blanket Implementations

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]