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