pub trait Encode {
// Required methods
fn to_be_words(self) -> Vec<Word> ⓘ;
fn to_le_words(self) -> Vec<Word> ⓘ;
}Expand description
Encode a value into Big or Little Endian-ordered Words.
Required Methods§
fn to_be_words(self) -> Vec<Word> ⓘ
fn to_le_words(self) -> Vec<Word> ⓘ
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".