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