[][src]Struct kanji::Punctuation

pub struct Punctuation(_);

Japanese symbols and punctuation.

Implementations

impl Punctuation[src]

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

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

use kanji::Punctuation;

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

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

Pull out the inner char.

Trait Implementations

impl Clone for Punctuation[src]

impl Copy for Punctuation[src]

impl Debug for Punctuation[src]

impl Eq for Punctuation[src]

impl Hash for Punctuation[src]

impl Ord for Punctuation[src]

impl PartialEq<Punctuation> for Punctuation[src]

impl PartialOrd<Punctuation> for Punctuation[src]

impl StructuralEq for Punctuation[src]

impl StructuralPartialEq for Punctuation[src]

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.