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§
impl<'a> StructuralPartialEq for Piece<'a>
Auto Trait Implementations§
impl<'a> Freeze for Piece<'a>
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