pub enum DateToken {
Literal(String),
Number(String, Option<String>),
Colon,
Dash,
Space,
Plus,
Error(String),
}Variants§
Trait Implementations§
impl StructuralPartialEq for DateToken
Auto Trait Implementations§
impl Freeze for DateToken
impl RefUnwindSafe for DateToken
impl Send for DateToken
impl Sync for DateToken
impl Unpin for DateToken
impl UnwindSafe for DateToken
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