Enum syntax::ast::StrStyle[][src]

pub enum StrStyle {
    Cooked,
    Raw(u16),
}

Variants

A regular string, like "foo"

A raw string, like r##"foo"##

The value is the number of # symbols used.

Trait Implementations

impl Clone for StrStyle
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for StrStyle
[src]

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

This method tests for !=.

impl Eq for StrStyle
[src]

impl Encodable for StrStyle
[src]

impl Decodable for StrStyle
[src]

impl Hash for StrStyle
[src]

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

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

impl Debug for StrStyle
[src]

Formats the value using the given formatter. Read more

impl Copy for StrStyle
[src]

Auto Trait Implementations

impl Send for StrStyle

impl Sync for StrStyle