pub trait ToLSBytes {
type Output: AsRef<[u8]>;
// Required method
fn to_ls_bytes(&self) -> Self::Output;
}
Expand description
Get the offset of this type in the lowest significant bytes.
Required Associated Types§
Required Methods§
Sourcefn to_ls_bytes(&self) -> Self::Output
fn to_ls_bytes(&self) -> Self::Output
Convert self to the lowest significant bytes.