[][src]Struct mail_chars::LookupResult

pub struct LookupResult(_);

Represents the result of a lookup of a char.

CharMatchExt is implemented on it so that you can treat it the same as a char (wrt. this trait).

Example

use mail_chars::{Charset, CharMatchExt};

let res = Charset::lookup('↓');
assert!(!res.is_ascii());
assert!(!res.is(Charset::QTextWs));
assert!(res.is_inkl_non_ascii(Charset::QTextWs));

let res = Charset::lookup('<');
assert!(res.is_ascii());
assert!(res.is(Charset::QTextWs));
assert!(res.is(Charset::CTextWs));
assert!(!res.is(Charset::AText));

Methods

impl LookupResult[src]

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

Trait Implementations

impl Seal for LookupResult[src]

impl CharMatchExt for LookupResult[src]

impl Clone for LookupResult[src]

impl Copy for LookupResult[src]

impl Eq for LookupResult[src]

impl PartialEq<LookupResult> for LookupResult[src]

impl Debug for LookupResult[src]

impl Hash for LookupResult[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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