Struct nommy::text::AnyOf[][src]

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

AnyOf is a generic type that implements Parse to match many characters within the given string

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

Trait Implementations

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

impl<const CHARS: &'static str> UnwindSafe for AnyOf<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.