Struct registry::iter::values::ValueRef[][src]

pub struct ValueRef<'a> { /* fields omitted */ }

Implementations

impl<'a> ValueRef<'a>[src]

pub fn set_name<S>(&mut self, name: S) -> Result<(), Error> where
    S: TryInto<U16CString>,
    S::Error: Into<Error>, 
[src]

pub fn set_data(&mut self, data: Data) -> Result<(), Error>[src]

pub fn name(&self) -> &U16CStr[src]

pub fn data(&self) -> &Data[src]

pub fn into_name(self) -> U16CString[src]

pub fn into_data(self) -> Data[src]

pub fn into_inner(self) -> (U16CString, Data)[src]

Trait Implementations

impl<'a> Debug for ValueRef<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for ValueRef<'a>

impl<'a> !Send for ValueRef<'a>

impl<'a> !Sync for ValueRef<'a>

impl<'a> Unpin for ValueRef<'a>

impl<'a> UnwindSafe for ValueRef<'a>

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