pub enum ProjectCardAfterId {
Variant0(String),
Variant1(f64),
Variant2,
}
Expand description
ProjectCardAfterId
JSON schema
{
"oneOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "null"
}
]
}
Variants§
Trait Implementations§
Source§impl Clone for ProjectCardAfterId
impl Clone for ProjectCardAfterId
Source§fn clone(&self) -> ProjectCardAfterId
fn clone(&self) -> ProjectCardAfterId
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 ProjectCardAfterId
impl Debug for ProjectCardAfterId
Source§impl<'de> Deserialize<'de> for ProjectCardAfterId
impl<'de> Deserialize<'de> for ProjectCardAfterId
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<&ProjectCardAfterId> for ProjectCardAfterId
impl From<&ProjectCardAfterId> for ProjectCardAfterId
Source§fn from(value: &ProjectCardAfterId) -> Self
fn from(value: &ProjectCardAfterId) -> Self
Converts to this type from the input type.
Source§impl From<f64> for ProjectCardAfterId
impl From<f64> for ProjectCardAfterId
Auto Trait Implementations§
impl Freeze for ProjectCardAfterId
impl RefUnwindSafe for ProjectCardAfterId
impl Send for ProjectCardAfterId
impl Sync for ProjectCardAfterId
impl Unpin for ProjectCardAfterId
impl UnwindSafe for ProjectCardAfterId
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