pub enum AtomOrQuoted {
Atom(String),
Quoted(String),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AtomOrQuoted
impl Clone for AtomOrQuoted
Source§fn clone(&self) -> AtomOrQuoted
fn clone(&self) -> AtomOrQuoted
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 AtomOrQuoted
impl Debug for AtomOrQuoted
Source§impl PartialEq for AtomOrQuoted
impl PartialEq for AtomOrQuoted
impl Eq for AtomOrQuoted
impl StructuralPartialEq for AtomOrQuoted
Auto Trait Implementations§
impl Freeze for AtomOrQuoted
impl RefUnwindSafe for AtomOrQuoted
impl Send for AtomOrQuoted
impl Sync for AtomOrQuoted
impl Unpin for AtomOrQuoted
impl UnwindSafe for AtomOrQuoted
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