[][src]Struct ncursesw::WideChar

pub struct WideChar { /* fields omitted */ }

Wide character (UTF-8 character).

Methods

impl WideChar[src]

pub fn new(ch: char) -> Self[src]

pub fn is_digit(self, radix: u32) -> bool[src]

pub fn to_digit(self, radix: u32) -> Option<u32>[src]

pub fn escape_unicode(self) -> EscapeUnicode[src]

pub fn escape_debug(self) -> EscapeDebug[src]

pub fn escape_default(self) -> EscapeDefault[src]

pub fn len_utf8(self) -> usize[src]

pub fn len_utf16(self) -> usize[src]

pub fn encode_utf8(self, dst: &mut [u8]) -> &mut str[src]

pub fn encode_utf16(self, dst: &mut [u16]) -> &mut [u16][src]

pub fn is_alphabetic(self) -> bool[src]

pub fn is_lowercase(self) -> bool[src]

pub fn is_uppercase(self) -> bool[src]

pub fn is_whitespace(self) -> bool[src]

pub fn is_alphanumeric(self) -> bool[src]

pub fn is_control(self) -> bool[src]

pub fn is_numeric(self) -> bool[src]

pub fn to_lowercase(self) -> ToLowercase[src]

pub fn to_uppercase(self) -> ToUppercase[src]

pub fn is_ascii(self) -> bool[src]

pub fn to_ascii_uppercase(self) -> char[src]

pub fn to_ascii_lowercase(self) -> char[src]

pub fn eq_ignore_ascii_case(self, other: char) -> bool[src]

pub fn make_ascii_uppercase(&mut self)[src]

pub fn make_ascii_lowercase(&mut self)[src]

pub fn is_ascii_alphabetic(self) -> bool[src]

pub fn is_ascii_uppercase(self) -> bool[src]

pub fn is_ascii_lowercase(self) -> bool[src]

pub fn is_ascii_alphanumeric(self) -> bool[src]

pub fn is_ascii_digit(self) -> bool[src]

pub fn is_ascii_hexdigit(self) -> bool[src]

pub fn is_ascii_punctuation(self) -> bool[src]

pub fn is_ascii_graphic(self) -> bool[src]

pub fn is_ascii_whitespace(self) -> bool[src]

pub fn is_ascii_control(self) -> bool[src]

pub fn is_weof(self) -> bool[src]

pub fn as_char(self) -> Result<char, NCurseswError>[src]

Trait Implementations

impl Clone for WideChar[src]

impl Copy for WideChar[src]

impl Debug for WideChar[src]

impl Eq for WideChar[src]

impl From<i32> for WideChar[src]

impl From<u32> for WideChar[src]

impl GetCharacterType for WideChar[src]

impl Hash for WideChar[src]

impl Into<i32> for WideChar[src]

impl Into<u32> for WideChar[src]

impl PartialEq<WideChar> for WideChar[src]

impl StructuralEq for WideChar[src]

impl StructuralPartialEq for WideChar[src]

impl TryInto<char> for WideChar[src]

type Error = CharTryFromError

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.