pub enum IssueState {
Open,
Closed,
}
Expand description
State of the issue; either ‘open’ or ‘closed’
JSON schema
{
"description": "State of the issue; either 'open' or 'closed'",
"type": "string",
"enum": [
"open",
"closed"
]
}
Variants§
Trait Implementations§
Source§impl Clone for IssueState
impl Clone for IssueState
Source§fn clone(&self) -> IssueState
fn clone(&self) -> IssueState
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 IssueState
impl Debug for IssueState
Source§impl<'de> Deserialize<'de> for IssueState
impl<'de> Deserialize<'de> for IssueState
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<&IssueState> for IssueState
impl From<&IssueState> for IssueState
Source§fn from(value: &IssueState) -> Self
fn from(value: &IssueState) -> Self
Converts to this type from the input type.
Source§impl FromStr for IssueState
impl FromStr for IssueState
Source§impl Hash for IssueState
impl Hash for IssueState
Source§impl Ord for IssueState
impl Ord for IssueState
Source§fn cmp(&self, other: &IssueState) -> Ordering
fn cmp(&self, other: &IssueState) -> 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 IssueState
impl PartialEq for IssueState
Source§impl PartialOrd for IssueState
impl PartialOrd for IssueState
Source§impl Serialize for IssueState
impl Serialize for IssueState
Source§impl ToString for IssueState
impl ToString for IssueState
Source§impl TryFrom<&String> for IssueState
impl TryFrom<&String> for IssueState
Source§impl TryFrom<&str> for IssueState
impl TryFrom<&str> for IssueState
Source§impl TryFrom<String> for IssueState
impl TryFrom<String> for IssueState
impl Copy for IssueState
impl Eq for IssueState
impl StructuralPartialEq for IssueState
Auto Trait Implementations§
impl Freeze for IssueState
impl RefUnwindSafe for IssueState
impl Send for IssueState
impl Sync for IssueState
impl Unpin for IssueState
impl UnwindSafe for IssueState
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