pub struct AnnotatedChar {
pub ch: char,
pub context: QuoteContext,
}Expand description
A character annotated with its quoting context.
Fields§
§ch: char§context: QuoteContextTrait Implementations§
Source§impl Clone for AnnotatedChar
impl Clone for AnnotatedChar
Source§fn clone(&self) -> AnnotatedChar
fn clone(&self) -> AnnotatedChar
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 AnnotatedChar
impl Debug for AnnotatedChar
impl Copy for AnnotatedChar
Auto Trait Implementations§
impl Freeze for AnnotatedChar
impl RefUnwindSafe for AnnotatedChar
impl Send for AnnotatedChar
impl Sync for AnnotatedChar
impl Unpin for AnnotatedChar
impl UnsafeUnpin for AnnotatedChar
impl UnwindSafe for AnnotatedChar
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