pub enum ProjectCardDeletedAction {
Deleted,
}
Expand description
ProjectCardDeletedAction
JSON schema
{
"type": "string",
"enum": [
"deleted"
]
}
Variants§
Deleted
Trait Implementations§
Source§impl Clone for ProjectCardDeletedAction
impl Clone for ProjectCardDeletedAction
Source§fn clone(&self) -> ProjectCardDeletedAction
fn clone(&self) -> ProjectCardDeletedAction
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 ProjectCardDeletedAction
impl Debug for ProjectCardDeletedAction
Source§impl<'de> Deserialize<'de> for ProjectCardDeletedAction
impl<'de> Deserialize<'de> for ProjectCardDeletedAction
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<&ProjectCardDeletedAction> for ProjectCardDeletedAction
impl From<&ProjectCardDeletedAction> for ProjectCardDeletedAction
Source§fn from(value: &ProjectCardDeletedAction) -> Self
fn from(value: &ProjectCardDeletedAction) -> Self
Converts to this type from the input type.
Source§impl FromStr for ProjectCardDeletedAction
impl FromStr for ProjectCardDeletedAction
Source§impl Hash for ProjectCardDeletedAction
impl Hash for ProjectCardDeletedAction
Source§impl Ord for ProjectCardDeletedAction
impl Ord for ProjectCardDeletedAction
Source§fn cmp(&self, other: &ProjectCardDeletedAction) -> Ordering
fn cmp(&self, other: &ProjectCardDeletedAction) -> 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 PartialEq for ProjectCardDeletedAction
impl PartialEq for ProjectCardDeletedAction
Source§impl PartialOrd for ProjectCardDeletedAction
impl PartialOrd for ProjectCardDeletedAction
Source§impl Serialize for ProjectCardDeletedAction
impl Serialize for ProjectCardDeletedAction
Source§impl ToString for ProjectCardDeletedAction
impl ToString for ProjectCardDeletedAction
Source§impl TryFrom<&String> for ProjectCardDeletedAction
impl TryFrom<&String> for ProjectCardDeletedAction
Source§impl TryFrom<&str> for ProjectCardDeletedAction
impl TryFrom<&str> for ProjectCardDeletedAction
Source§impl TryFrom<String> for ProjectCardDeletedAction
impl TryFrom<String> for ProjectCardDeletedAction
impl Copy for ProjectCardDeletedAction
impl Eq for ProjectCardDeletedAction
impl StructuralPartialEq for ProjectCardDeletedAction
Auto Trait Implementations§
impl Freeze for ProjectCardDeletedAction
impl RefUnwindSafe for ProjectCardDeletedAction
impl Send for ProjectCardDeletedAction
impl Sync for ProjectCardDeletedAction
impl Unpin for ProjectCardDeletedAction
impl UnwindSafe for ProjectCardDeletedAction
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