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