pub enum Substitution<'a> {
Ordinal(u8, (usize, usize)),
Name(&'a str, (usize, usize)),
Escape((usize, usize)),
}
Variants
Ordinal(u8, (usize, usize))
Name(&'a str, (usize, usize))
Escape((usize, usize))
Implementations
Trait Implementations
sourceimpl<'a> Clone for Substitution<'a>
impl<'a> Clone for Substitution<'a>
sourcefn clone(&self) -> Substitution<'a>
fn clone(&self) -> Substitution<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl<'a> Debug for Substitution<'a>
impl<'a> Debug for Substitution<'a>
sourceimpl<'a> PartialEq<Substitution<'a>> for Substitution<'a>
impl<'a> PartialEq<Substitution<'a>> for Substitution<'a>
sourcefn eq(&self, other: &Substitution<'a>) -> bool
fn eq(&self, other: &Substitution<'a>) -> bool
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
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: 40 bytes
Size for each variant:
Ordinal
: 23 bytesName
: 39 bytesEscape
: 23 bytes