pub enum NumOrStr {
Number(i64),
Str(String),
}Expand description
A value that could be either a number or a string.
Used for fields that may contain numeric or string values, such as issue numbers,
volume numbers, or similar identifiers that can be formatted as either type.
The Display implementation shows the value in its appropriate form.
Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for NumOrStr
impl<'de> Deserialize<'de> for NumOrStr
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<NumOrStr, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<NumOrStr, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for NumOrStr
impl Serialize for NumOrStr
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for NumOrStr
impl StructuralPartialEq for NumOrStr
Auto Trait Implementations§
impl Freeze for NumOrStr
impl RefUnwindSafe for NumOrStr
impl Send for NumOrStr
impl Sync for NumOrStr
impl Unpin for NumOrStr
impl UnsafeUnpin for NumOrStr
impl UnwindSafe for NumOrStr
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.