str32

Type Alias str32 

Source
pub type str32 = tstr<32>;
Expand description

A str32 can hold a string of up to 31 bytes. See docs for zstr

Aliased Type§

pub struct str32 {
    chrs: [u8; 32],
}

Fields§

§chrs: [u8; 32]

Trait Implementations§

Source§

impl Add for str32

Source§

type Output = tstr<64>

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more