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