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