[][src]Struct gobble::reader::StringRepeat

pub struct StringRepeat<A: Parser<Out = AV>, AV: Into<String> + AsRef<str>> { /* fields omitted */ }

Trait Implementations

impl<A: Parser<Out = AV>, AV: Into<String> + AsRef<str>> Parser for StringRepeat<A, AV>[src]

type Out = String

Auto Trait Implementations

impl<A, AV> RefUnwindSafe for StringRepeat<A, AV> where
    A: RefUnwindSafe

impl<A, AV> Send for StringRepeat<A, AV> where
    A: Send

impl<A, AV> Sync for StringRepeat<A, AV> where
    A: Sync

impl<A, AV> Unpin for StringRepeat<A, AV> where
    A: Unpin

impl<A, AV> UnwindSafe for StringRepeat<A, AV> where
    A: UnwindSafe

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<V, F> Parser for F where
    F: for<'a> Fn(&LCChars<'a>) -> Result<(LCChars<'a>, V, Option<ParseError>), ParseError>, 
[src]

type Out = V

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.