Trait km::string::NativeString [] [src]

pub trait NativeString {
    fn size(&self) -> u16;
    fn max_size(&self) -> u16;

    fn is_empty(&self) -> bool { ... }
}

NT native string types.

Required Methods

fn size(&self) -> u16

Size of string in bytes.

fn max_size(&self) -> u16

Size of buffer in bytes.

Provided Methods

fn is_empty(&self) -> bool

Check is the string is empty.

Implementors