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