Skip to main content

String24

Type Alias String24 

Source
pub type String24 = StaticU8String<2>;
Expand description

A 24-bit UTF-8-encoded string, with fixed capacity of 2 bytes.

Aliased Type§

pub struct String24 { /* private fields */ }

Trait Implementations§

Source§

impl From<Char7> for String24

Source§

fn from(c: Char7) -> String24

Converts to this type from the input type.
Source§

impl From<Char8> for String24

Source§

fn from(c: Char8) -> String24

Converts to this type from the input type.
Source§

impl TryFrom<Char16> for String24

Source§

type Error = TextosError

The type returned in the event of a conversion error.
Source§

fn try_from(c: Char16) -> Result<String24>

Performs the conversion.
Source§

impl TryFrom<Char24> for String24

Source§

type Error = TextosError

The type returned in the event of a conversion error.
Source§

fn try_from(c: Char24) -> Result<String24>

Performs the conversion.
Source§

impl TryFrom<Char32> for String24

Source§

type Error = TextosError

The type returned in the event of a conversion error.
Source§

fn try_from(c: Char32) -> Result<String24>

Performs the conversion.
Source§

impl TryFrom<char> for String24

Source§

type Error = TextosError

The type returned in the event of a conversion error.
Source§

fn try_from(c: char) -> Result<String24>

Performs the conversion.