Assembly

Trait Assembly 

Source
pub trait Assembly {
    const N: usize = 7usize;
    const SIDS: [u8; 7] = _;

    // Provided method
    fn position<const ID: u8>() -> Option<usize> { ... }
}
Expand description

GMT assembly definition

Provided Associated Constants§

Source

const N: usize = 7usize

Source

const SIDS: [u8; 7] = _

Provided Methods§

Source

fn position<const ID: u8>() -> Option<usize>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§