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