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