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