Struct nommy::bytes::OneOf[][src]

pub struct OneOf<const BYTES: &'static [u8]>(_);

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

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

Trait Implementations

impl<const BYTES: &'static [u8]> Clone for OneOf<BYTES>[src]

impl<const BYTES: &'static [u8]> Copy for OneOf<BYTES>[src]

impl<const BYTES: &'static [u8]> Debug for OneOf<BYTES>[src]

impl<const BYTES: &'static [u8]> Parse<u8> for OneOf<BYTES>[src]

impl<const BYTES: &'static [u8]> PartialEq<OneOf<BYTES>> for OneOf<BYTES>[src]

impl<const BYTES: &'static [u8]> StructuralPartialEq for OneOf<BYTES>[src]

Auto Trait Implementations

impl<const BYTES: &'static [u8]> RefUnwindSafe for OneOf<BYTES>[src]

impl<const BYTES: &'static [u8]> Send for OneOf<BYTES>[src]

impl<const BYTES: &'static [u8]> Sync for OneOf<BYTES>[src]

impl<const BYTES: &'static [u8]> Unpin for OneOf<BYTES>[src]

impl<const BYTES: &'static [u8]> UnwindSafe for OneOf<BYTES>[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.