pub enum CharOrByte {
Char(char),
Byte(u8),
}
Expand description
A character or byte from the input.
Variants§
Implementations§
Source§impl CharOrByte
impl CharOrByte
Sourcepub fn source_len(&self) -> usize
pub fn source_len(&self) -> usize
Get the byte length of the character in the source.
For Self::Char
, this returns the UTF-8 lengths of the character.
For Self::Byte
, this is always returns 1.
Sourcepub fn quoted_printable(&self) -> impl Display
pub fn quoted_printable(&self) -> impl Display
Return a printable version of self
for error messages.
The returned value implements Display
and is suitable for inclusion in error messages.
Trait Implementations§
Source§impl Clone for CharOrByte
impl Clone for CharOrByte
Source§fn clone(&self) -> CharOrByte
fn clone(&self) -> CharOrByte
Returns a duplicate 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 Debug for CharOrByte
impl Debug for CharOrByte
Source§impl Display for CharOrByte
impl Display for CharOrByte
Source§impl PartialEq for CharOrByte
impl PartialEq for CharOrByte
impl Copy for CharOrByte
impl Eq for CharOrByte
impl StructuralPartialEq for CharOrByte
Auto Trait Implementations§
impl Freeze for CharOrByte
impl RefUnwindSafe for CharOrByte
impl Send for CharOrByte
impl Sync for CharOrByte
impl Unpin for CharOrByte
impl UnwindSafe for CharOrByte
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.