StrStyle in rustc_ast::ast - Rust (original) (raw)
pub enum StrStyle {
Cooked,
Raw(u8),
}
Variants§
Cooked
A regular string, like "foo"
.
Raw(u8)
A raw string, like r##"foo"##
.
The value is the number of #
symbols used.
Trait Implementations§
Auto Trait Implementations§
impl DynSend for StrStyle
impl DynSync for StrStyle
impl Freeze for StrStyle
impl RefUnwindSafe for StrStyle
impl Send for StrStyle
impl Sync for StrStyle
impl Unpin for StrStyle
impl UnwindSafe for StrStyle
Blanket Implementations§
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 2 bytes
Size for each variant:
Cooked
: 0 bytesRaw
: 1 byte