Enum devise::syn::StrStyle [−][src]
pub enum StrStyle {
Cooked,
Raw(usize),
}
Expand description
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"
.
Raw(usize)
A raw string like r##"data"##
.
The unsigned integer is the number of #
symbols used.
Tuple Fields of Raw
0: usize
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for StrStyle
impl UnwindSafe for StrStyle
Blanket Implementations
Mutably borrows from an owned value. Read more