pub enum Value<T> {
Test(T),
Set(Set<T>),
Func(Func<T>),
Num(Num),
Str(Str),
}Expand description
The value of a test set expression.
Variants§
Test(T)
A test.
Set(Set<T>)
A test set.
Func(Func<T>)
A function.
Num(Num)
An unsigned integer.
Str(Str)
A string.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Value<T>where
T: Freeze,
impl<T> !RefUnwindSafe for Value<T>
impl<T> !Send for Value<T>
impl<T> !Sync for Value<T>
impl<T> Unpin for Value<T>where
T: Unpin,
impl<T> !UnwindSafe for Value<T>
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