[][src]Trait cborg::value::ValueInto

pub trait ValueInto<T> {
    fn into_type(self) -> Option<T>
    where
        Self: Sized
;
fn to_type(&self) -> Option<T>
    where
        Self: Sized
; }

Required methods

fn into_type(self) -> Option<T> where
    Self: Sized

fn to_type(&self) -> Option<T> where
    Self: Sized

Loading content...

Implementors

impl<U> ValueInto<U> for Value where
    U: FromValue
[src]

Loading content...