Struct nommy::text::WhileNot1[][src]

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

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

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

Trait Implementations

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

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