pub enum InputValue {
Int(i64),
Float(f64),
Bool(bool),
String(String),
Array(Vec<Box<InputValue>>),
}Variants§
Trait Implementations§
Source§impl Clone for InputValue
impl Clone for InputValue
Source§fn clone(&self) -> InputValue
fn clone(&self) -> InputValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InputValue
impl Debug for InputValue
Source§impl PartialEq for InputValue
impl PartialEq for InputValue
Source§impl TryFrom<InputValue> for String
impl TryFrom<InputValue> for String
Source§impl TryFrom<InputValue> for bool
impl TryFrom<InputValue> for bool
Source§impl TryFrom<InputValue> for f64
impl TryFrom<InputValue> for f64
Source§impl TryFrom<InputValue> for i64
impl TryFrom<InputValue> for i64
impl StructuralPartialEq for InputValue
Auto Trait Implementations§
impl Freeze for InputValue
impl RefUnwindSafe for InputValue
impl Send for InputValue
impl Sync for InputValue
impl Unpin for InputValue
impl UnwindSafe for InputValue
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