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