pub trait FastMessages: FastMessagesSealed {
// Required methods
fn prepare_in(self) -> [Option<Word>; 4];
fn prepare_in_out(self) -> [Word; 4];
}Expand description
Trait for types which can hold the contents of a set of inline message registers.
Required Methods§
fn prepare_in(self) -> [Option<Word>; 4]
fn prepare_in_out(self) -> [Word; 4]
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".