Enum syn::StrStyle[][src]

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

The style of a string literal, either plain quoted or a raw string like r##"data"##.

This type is available if Syn is built with the "derive" or "full" feature.

Variants

An ordinary string like "data".

A raw string like r##"data"##.

The unsigned integer is the number of # symbols used.

Trait Implementations

impl Debug for StrStyle
[src]

Formats the value using the given formatter. Read more

impl Eq for StrStyle
[src]

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 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 Clone for StrStyle
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for StrStyle

impl Sync for StrStyle