str64

Type Alias str64 

Source
pub type str64 = tstr<64>;
Expand description

A str64 can hold a string of up to 63 bytes. See docs for zstr

Aliased Type§

pub struct str64 {
    chrs: [u8; 64],
}

Fields§

§chrs: [u8; 64]

Trait Implementations§

Source§

impl Add for str64

Source§

type Output = tstr<128>

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more