pub trait ToWord {
    fn to_word(&self) -> Word;
}
Expand description

Trait used to convert a type to a Word.

Required Methods

Convert the type to a Word.

Implementations on Foreign Types

Implementors