pub enum ParameterContent {
String(String),
Int(i64),
Bool(bool),
Double(f64),
Bytes(Vec<u8>),
}Expand description
Enum representation of Parameter content.
Variants§
Trait Implementations§
Source§impl Clone for ParameterContent
impl Clone for ParameterContent
Source§fn clone(&self) -> ParameterContent
fn clone(&self) -> ParameterContent
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 moreAuto Trait Implementations§
impl Freeze for ParameterContent
impl RefUnwindSafe for ParameterContent
impl Send for ParameterContent
impl Sync for ParameterContent
impl Unpin for ParameterContent
impl UnwindSafe for ParameterContent
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