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