#[non_exhaustive]pub enum TestToken {
}
Expand description
A tokenized representation of the captured value for testing.
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)
None
Error
Sval
Serde
Seq
Poisoned(String)
Trait Implementations§
impl StructuralPartialEq for TestToken
Auto Trait Implementations§
impl Freeze for TestToken
impl RefUnwindSafe for TestToken
impl Send for TestToken
impl Sync for TestToken
impl Unpin for TestToken
impl UnwindSafe for TestToken
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