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