Struct nommy::text::OneOf[][src]

pub struct OneOf<const CHARS: &'static str>(_);

OneOf is a generic type that implements Parse to match one character within the given string

use nommy::{Parse, IntoBuf, text::OneOf};
let mut buffer = "-".chars().into_buf();
let c: char = OneOf::<"-_">::parse(&mut buffer).unwrap().into();
assert_eq!(c, '-');

Trait Implementations

impl<const CHARS: &'static str> Clone for OneOf<CHARS>[src]

impl<const CHARS: &'static str> Copy for OneOf<CHARS>[src]

impl<const CHARS: &'static str> Debug for OneOf<CHARS>[src]

impl<const CHARS: &'static str> Parse<char> for OneOf<CHARS>[src]

impl<const CHARS: &'static str> PartialEq<OneOf<CHARS>> for OneOf<CHARS>[src]

impl<const CHARS: &'static str> StructuralPartialEq for OneOf<CHARS>[src]

Auto Trait Implementations

impl<const CHARS: &'static str> RefUnwindSafe for OneOf<CHARS>[src]

impl<const CHARS: &'static str> Send for OneOf<CHARS>[src]

impl<const CHARS: &'static str> Sync for OneOf<CHARS>[src]

impl<const CHARS: &'static str> Unpin for OneOf<CHARS>[src]

impl<const CHARS: &'static str> UnwindSafe for OneOf<CHARS>[src]

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.