pub enum Token {
Text(Location, String),
Separator(Location, char),
}Variants§
Implementations§
Source§impl Token
impl Token
pub fn location(&self) -> Location
pub fn eq_text(&self, text: &str) -> bool
pub fn eq_text_ignore_ascii_case(&self, text: &str) -> bool
pub fn eq_separator(&self, separator: char) -> bool
pub fn text(&self) -> Option<&str>
pub fn separator(&self) -> Option<char>
pub fn is_text(&self) -> bool
pub fn is_separator(&self) -> bool
pub fn into_text(self) -> Option<String>
pub fn into_text_or_else<E, F: FnOnce(Token) -> E>( self, f: F, ) -> Result<String, E>
pub fn into_separator_or_else<E, F: FnOnce(Token) -> E>( self, f: F, ) -> Result<char, E>
Trait Implementations§
Source§impl PartialOrd for Token
impl PartialOrd for Token
impl Eq for Token
impl StructuralPartialEq for Token
Auto Trait Implementations§
impl Freeze for Token
impl RefUnwindSafe for Token
impl Send for Token
impl Sync for Token
impl Unpin for Token
impl UnsafeUnpin for Token
impl UnwindSafe for Token
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.