pub enum ArgumentValue {
None,
Boolean(bool),
Integer(i64),
Float(f32),
Double(f64),
String(String),
}
Variants§
Trait Implementations§
Source§impl Clone for ArgumentValue
impl Clone for ArgumentValue
Source§fn clone(&self) -> ArgumentValue
fn clone(&self) -> ArgumentValue
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ArgumentValue
impl Debug for ArgumentValue
Source§impl Into<String> for ArgumentValue
impl Into<String> for ArgumentValue
Source§impl Into<f32> for ArgumentValue
impl Into<f32> for ArgumentValue
Source§impl Into<f64> for ArgumentValue
impl Into<f64> for ArgumentValue
Source§impl Into<i64> for ArgumentValue
impl Into<i64> for ArgumentValue
Source§impl PartialEq for ArgumentValue
impl PartialEq for ArgumentValue
Source§impl PartialOrd for ArgumentValue
impl PartialOrd for ArgumentValue
impl StructuralPartialEq for ArgumentValue
Auto Trait Implementations§
impl Freeze for ArgumentValue
impl RefUnwindSafe for ArgumentValue
impl Send for ArgumentValue
impl Sync for ArgumentValue
impl Unpin for ArgumentValue
impl UnwindSafe for ArgumentValue
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