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