pub enum AttrValue {
Float(f64),
Int(i64),
String(String),
Bool(bool),
}Expand description
A user attribute value that can be stored on a trial.
Variants§
Float(f64)
A floating-point attribute.
Int(i64)
An integer attribute.
String(String)
A string attribute.
Bool(bool)
A boolean attribute.
Trait Implementations§
impl StructuralPartialEq for AttrValue
Auto Trait Implementations§
impl Freeze for AttrValue
impl RefUnwindSafe for AttrValue
impl Send for AttrValue
impl Sync for AttrValue
impl Unpin for AttrValue
impl UnsafeUnpin for AttrValue
impl UnwindSafe for AttrValue
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