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