Enum rustc_parse_format::Piece
source · [−]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
NextArgument(Argument<'a>)
This describes that formatting should process the next argument (as specified inside) for emission.
Trait Implementations
impl<'a> Copy for Piece<'a>
impl<'a> StructuralPartialEq for Piece<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for Piece<'a>
impl<'a> Send for Piece<'a>
impl<'a> Sync for Piece<'a>
impl<'a> Unpin for Piece<'a>
impl<'a> UnwindSafe for Piece<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
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: 224 bytes
Size for each variant:
String
: 16 bytesNextArgument
: 224 bytes