[][src]Trait crev_common::serde::MyTryFromBytes

pub trait MyTryFromBytes: Sized {
    type Err: 'static + Sized + Error;
    fn try_from(_: &[u8]) -> Result<Self, Self::Err>;
}

Associated Types

type Err: 'static + Sized + Error

Loading content...

Required methods

fn try_from(_: &[u8]) -> Result<Self, Self::Err>

Loading content...

Implementations on Foreign Types

impl MyTryFromBytes for Vec<u8>[src]

type Err = Error

Loading content...

Implementors

Loading content...