Skip to main content

String

Type Alias String 

Source
pub type String<const N: usize, LenT = usize> = StringInner<LenT, VecStorageInner<[MaybeUninit<u8>; N]>>;
Expand description

A fixed capacity String.

Aliased Typeยง

pub struct String<const N: usize, LenT = usize> { /* private fields */ }