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