[][src]Struct kanji::ASCII

pub struct ASCII(_);

A standard ASCII character.

Implementations

impl ASCII[src]

pub fn new(c: char) -> Option<ASCII>[src]

Attempt to form a ASCII. Will fail if the given char is out of the expected Unicode range.

use kanji::ASCII;

assert_eq!(Some('a'), ASCII::new('a').map(|k| k.get()));
assert_eq!(None, ASCII::new('あ'));

pub fn get(&self) -> char[src]

Pull out the inner char.

Trait Implementations

impl Clone for ASCII[src]

impl Copy for ASCII[src]

impl Debug for ASCII[src]

impl Eq for ASCII[src]

impl Hash for ASCII[src]

impl Ord for ASCII[src]

impl PartialEq<ASCII> for ASCII[src]

impl PartialOrd<ASCII> for ASCII[src]

impl StructuralEq for ASCII[src]

impl StructuralPartialEq for ASCII[src]

Auto Trait Implementations

impl RefUnwindSafe for ASCII

impl Send for ASCII

impl Sync for ASCII

impl Unpin for ASCII

impl UnwindSafe for ASCII

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.