pub trait FromSerialiedBorrow<'data, Value: 'data>: Representation {
// Required method
fn deserialize_borrow(
&self,
repr: &'data [u8],
) -> Result<Value, Self::DeserializeError>;
}
Expand description
Borrow deserialization trait restricted to for particular type.