[][src]Struct quoted_string::Parsed

pub struct Parsed<'a> {
    pub quoted_string: &'a str,
    pub tail: &'a str,
}

the result of successfully parsing a quoted string

Fields

quoted_string: &'a str

the parsed quoted string

tail: &'a str

the rest of the input string, not parsed

Trait Implementations

impl<'a> Clone for Parsed<'a>[src]

impl<'a> Eq for Parsed<'a>[src]

impl<'a> PartialEq<Parsed<'a>> for Parsed<'a>[src]

impl<'a> Debug for Parsed<'a>[src]

impl<'a> Hash for Parsed<'a>[src]

Auto Trait Implementations

impl<'a> Send for Parsed<'a>

impl<'a> Sync for Parsed<'a>

impl<'a> Unpin for Parsed<'a>

impl<'a> UnwindSafe for Parsed<'a>

impl<'a> RefUnwindSafe for Parsed<'a>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]