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