pub trait LiveNodeVecFromCbor {
    // Required method
    fn from_cbor(&mut self, buf: &[u8]) -> Result<(), LiveNodeFromCborError>;
}

Required Methods§

source

fn from_cbor(&mut self, buf: &[u8]) -> Result<(), LiveNodeFromCborError>

Implementations on Foreign Types§

source§

impl LiveNodeVecFromCbor for Vec<LiveNode>

source§

fn from_cbor(&mut self, data: &[u8]) -> Result<(), LiveNodeFromCborError>

Implementors§