Enum value_bag::test::Token [−][src]
#[non_exhaustive]
pub enum Token {
U64(u64),
I64(i64),
F64(f64),
U128(u128),
I128(i128),
Char(char),
Bool(bool),
Str(String),
None,
Error,
Sval(Sval),
Serde(Serde),
}Expand description
A tokenized representation of the captured value.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
U64(u64)I64(i64)F64(f64)U128(u128)I128(i128)Char(char)Bool(bool)Str(String)Sval(Sval)Serde(Serde)