Trait dusk_bytes::Serializable
source · [−]pub trait Serializable<const N: usize> {
type Error;
const SIZE: usize = N;
fn from_bytes(buf: &[u8; N]) -> Result<Self, Self::Error>
where
Self: Sized;
fn to_bytes(&self) -> [u8; N];
}Expand description
The core trait used to implement [from_bytes] and [to_bytes]
Required Associated Types
Provided Associated Constants
Required Methods
Deserialize a [&[u8; N]] into Self, it might be fail.