Struct quoted_string::Parsed[][src]

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

the result of successfully parsing a quoted string

Fields

the parsed quoted string

the rest of the input string, not parsed

Trait Implementations

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

Formats the value using the given formatter. Read more

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

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

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