pub enum Word<'a> {
Quoted(QuotedString<'a>),
Atom(Atom<'a>),
}Variants§
Quoted(QuotedString<'a>)
Atom(Atom<'a>)
Implementations§
Trait Implementations§
Source§impl<'a> ContainsUtf8 for Word<'a>
impl<'a> ContainsUtf8 for Word<'a>
fn contains_utf8(&self) -> bool
Source§impl<'a> IntoBoundedStatic for Word<'a>
impl<'a> IntoBoundedStatic for Word<'a>
impl<'a> StructuralPartialEq for Word<'a>
Source§impl<'a> ToBoundedStatic for Word<'a>
impl<'a> ToBoundedStatic for Word<'a>
Auto Trait Implementations§
impl<'a> Freeze for Word<'a>
impl<'a> RefUnwindSafe for Word<'a>
impl<'a> Send for Word<'a>
impl<'a> Sync for Word<'a>
impl<'a> Unpin for Word<'a>
impl<'a> UnsafeUnpin for Word<'a>
impl<'a> UnwindSafe for Word<'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