pub enum ProjectCardConvertedAction {
Converted,
}
Expand description
ProjectCardConvertedAction
JSON schema
{
"type": "string",
"enum": [
"converted"
]
}
Variants§
Converted
Trait Implementations§
Source§impl Clone for ProjectCardConvertedAction
impl Clone for ProjectCardConvertedAction
Source§fn clone(&self) -> ProjectCardConvertedAction
fn clone(&self) -> ProjectCardConvertedAction
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 ProjectCardConvertedAction
impl Debug for ProjectCardConvertedAction
Source§impl<'de> Deserialize<'de> for ProjectCardConvertedAction
impl<'de> Deserialize<'de> for ProjectCardConvertedAction
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<&ProjectCardConvertedAction> for ProjectCardConvertedAction
impl From<&ProjectCardConvertedAction> for ProjectCardConvertedAction
Source§fn from(value: &ProjectCardConvertedAction) -> Self
fn from(value: &ProjectCardConvertedAction) -> Self
Converts to this type from the input type.
Source§impl FromStr for ProjectCardConvertedAction
impl FromStr for ProjectCardConvertedAction
Source§impl Hash for ProjectCardConvertedAction
impl Hash for ProjectCardConvertedAction
Source§impl Ord for ProjectCardConvertedAction
impl Ord for ProjectCardConvertedAction
Source§fn cmp(&self, other: &ProjectCardConvertedAction) -> Ordering
fn cmp(&self, other: &ProjectCardConvertedAction) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for ProjectCardConvertedAction
impl PartialOrd for ProjectCardConvertedAction
Source§impl TryFrom<&String> for ProjectCardConvertedAction
impl TryFrom<&String> for ProjectCardConvertedAction
Source§impl TryFrom<&str> for ProjectCardConvertedAction
impl TryFrom<&str> for ProjectCardConvertedAction
Source§impl TryFrom<String> for ProjectCardConvertedAction
impl TryFrom<String> for ProjectCardConvertedAction
impl Copy for ProjectCardConvertedAction
impl Eq for ProjectCardConvertedAction
impl StructuralPartialEq for ProjectCardConvertedAction
Auto Trait Implementations§
impl Freeze for ProjectCardConvertedAction
impl RefUnwindSafe for ProjectCardConvertedAction
impl Send for ProjectCardConvertedAction
impl Sync for ProjectCardConvertedAction
impl Unpin for ProjectCardConvertedAction
impl UnwindSafe for ProjectCardConvertedAction
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