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