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