pub enum TomlTok {
}Expand description
A TOML parsed token.
Variants
Ident(String)
Str(String)
U64(u64)
I64(i64)
F64(f64)
Bool(bool)
Nan(bool)
Inf(bool)
Date(String)
Equals
BlockOpen
BlockClose
Comma
Bof
Eof
Trait Implementations
impl StructuralPartialEq for TomlTok
Auto Trait Implementations
impl RefUnwindSafe for TomlTok
impl Send for TomlTok
impl Sync for TomlTok
impl Unpin for TomlTok
impl UnwindSafe for TomlTok
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more