pub enum OptionalStringNumber {
String(String),
Number(u64),
None,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for OptionalStringNumber
impl Clone for OptionalStringNumber
Source§fn clone(&self) -> OptionalStringNumber
fn clone(&self) -> OptionalStringNumber
Returns a copy 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 OptionalStringNumber
impl Debug for OptionalStringNumber
Source§impl<'de> Deserialize<'de> for OptionalStringNumber
impl<'de> Deserialize<'de> for OptionalStringNumber
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 From<String> for OptionalStringNumber
impl From<String> for OptionalStringNumber
Source§impl From<u64> for OptionalStringNumber
impl From<u64> for OptionalStringNumber
Auto Trait Implementations§
impl Freeze for OptionalStringNumber
impl RefUnwindSafe for OptionalStringNumber
impl Send for OptionalStringNumber
impl Sync for OptionalStringNumber
impl Unpin for OptionalStringNumber
impl UnwindSafe for OptionalStringNumber
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