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
CookedAn ordinary string like "data".
Raw(usize)A raw string like r##"data"##.
The unsigned integer is the number of # symbols used.