str4

Type Alias str4 

Source
pub type str4 = tstr<4>;
Expand description

strings of up to three 8-bit chars, good enough to represent abbreviations such as those for states and airports. Each str<4> is exactly 32 bits.

Aliased Type§

pub struct str4 {
    chrs: [u8; 4],
}

Fields§

§chrs: [u8; 4]

Trait Implementations§

Source§

impl Add for str4

Source§

type Output = tstr<8>

The resulting type after applying the + operator.
Source§

fn add(self, other: Self) -> Self::Output

Performs the + operation. Read more