Enum rustc_parse_format::Piece [−][src]
Expand description
A piece is a portion of the format string which represents the next part
to emit. These are emitted as a stream by the Parser
class.
Variants
String(&'a str)
A literal string which should directly be emitted
Tuple Fields of String
0: &'a str
NextArgument(Argument<'a>)
This describes that formatting should process the next argument (as specified inside) for emission.
Tuple Fields of NextArgument
0: Argument<'a>
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Piece<'a>
impl<'a> UnwindSafe for Piece<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more
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: 160 bytes
Size for each variant:
String
: 16 bytesNextArgument
: 152 bytes