pub enum Substitution<'a> {
Format(Format<'a>),
Escape((usize, usize)),
}
Expand description
Represents a single printf
-style substitution.
Variants§
Format(Format<'a>)
A formatted output substitution with its internal byte offset.
Escape((usize, usize))
A literal %%
escape, with its start and end indices.
Implementations§
Trait Implementations§
source§impl<'a> Clone for Substitution<'a>
impl<'a> Clone for Substitution<'a>
source§fn clone(&self) -> Substitution<'a>
fn clone(&self) -> Substitution<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a> Debug for Substitution<'a>
impl<'a> Debug for Substitution<'a>
source§impl<'a> PartialEq<Substitution<'a>> for Substitution<'a>
impl<'a> PartialEq<Substitution<'a>> for Substitution<'a>
source§fn eq(&self, other: &Substitution<'a>) -> bool
fn eq(&self, other: &Substitution<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<'a> StructuralPartialEq for Substitution<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Substitution<'a>
impl<'a> Send for Substitution<'a>
impl<'a> Sync for Substitution<'a>
impl<'a> Unpin for Substitution<'a>
impl<'a> UnwindSafe for Substitution<'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: 96 bytes
Size for each variant:
Format
: 96 bytesEscape
: 16 bytes