Str0255

Type Alias Str0255 

Source
pub type Str0255<'a> = Inner<'a, false, 1, 1, 255>;
Expand description

Type alias for a variable-sized string with a maximum size of 255 bytes, represented using the Inner type with a 1-byte header.

Aliased Type§

#[repr(C)]
pub enum Str0255<'a> { Ref(&'a mut [u8]), Owned(Vec<u8>), }

Variants§

§

Ref(&'a mut [u8])

§

Owned(Vec<u8>)