pub enum CustomParamTypes {
Text(Option<String>),
Url(Option<String>),
Integer(Option<i64>),
UInteger(Option<u64>),
Float(Option<f64>),
}
Variants§
Text(Option<String>)
Url(Option<String>)
Integer(Option<i64>)
UInteger(Option<u64>)
Float(Option<f64>)
Trait Implementations§
Source§impl Clone for CustomParamTypes
impl Clone for CustomParamTypes
Source§fn clone(&self) -> CustomParamTypes
fn clone(&self) -> CustomParamTypes
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 CustomParamTypes
impl Debug for CustomParamTypes
Source§impl<'de> Deserialize<'de> for CustomParamTypes
impl<'de> Deserialize<'de> for CustomParamTypes
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for CustomParamTypes
impl Display for CustomParamTypes
Source§impl FromStr for CustomParamTypes
impl FromStr for CustomParamTypes
Source§impl PartialEq for CustomParamTypes
impl PartialEq for CustomParamTypes
Source§impl Serialize for CustomParamTypes
impl Serialize for CustomParamTypes
Source§impl TryFrom<&str> for CustomParamTypes
impl TryFrom<&str> for CustomParamTypes
impl StructuralPartialEq for CustomParamTypes
Auto Trait Implementations§
impl Freeze for CustomParamTypes
impl RefUnwindSafe for CustomParamTypes
impl Send for CustomParamTypes
impl Sync for CustomParamTypes
impl Unpin for CustomParamTypes
impl UnwindSafe for CustomParamTypes
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