[][src]Trait typsy::anon::Access

pub trait Access {
    pub fn field<N, T, Name: 'static>(&self) -> &T
    where
        Self: Access<Named<T, Name>, N>
, { ... }
pub fn field_mut<N, T, Name: 'static>(&mut self) -> &mut T
    where
        Self: Access<Named<T, Name>, N>
, { ... }
pub fn take_field<N, T, Name>(self) -> (T, Self::Remainder)
    where
        Self: Access<Named<T, Name>, N>
, { ... } }

Provided methods

pub fn field<N, T, Name: 'static>(&self) -> &T where
    Self: Access<Named<T, Name>, N>, 
[src]

pub fn field_mut<N, T, Name: 'static>(&mut self) -> &mut T where
    Self: Access<Named<T, Name>, N>, 
[src]

pub fn take_field<N, T, Name>(self) -> (T, Self::Remainder) where
    Self: Access<Named<T, Name>, N>, 
[src]

Loading content...

Implementors

impl<T> Access for T[src]

Loading content...