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