Enum rustc_parse_format::Piece
source · pub enum Piece<'a> {
String(&'a str),
NextArgument(Box<Argument<'a>>),
}
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(Box<Argument<'a>>)
This describes that formatting should process the next argument (as specified inside) for emission.
Trait Implementations§
source§impl<'a> PartialEq<Piece<'a>> for Piece<'a>
impl<'a> PartialEq<Piece<'a>> 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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn 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: 16 bytes
Size for each variant:
String
: 16 bytesNextArgument
: 16 bytes