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