pub type Binary = Result<Vec<u8>, Error>;
Expand description
A representation of a value which can be stored and restored as a binary.
Aliased Type§
enum Binary {
Ok(Vec<u8>),
Err(Error),
}
pub type Binary = Result<Vec<u8>, Error>;
A representation of a value which can be stored and restored as a binary.
enum Binary {
Ok(Vec<u8>),
Err(Error),
}