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