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