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