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