pub enum BulkPluginActionResponseAction {
Approve,
Reject,
Delete,
}Expand description
BulkPluginActionResponseAction
JSON schema
{
"type": "string",
"enum": [
"approve",
"reject",
"delete"
]
}Variants§
Trait Implementations§
Source§impl Clone for BulkPluginActionResponseAction
impl Clone for BulkPluginActionResponseAction
Source§fn clone(&self) -> BulkPluginActionResponseAction
fn clone(&self) -> BulkPluginActionResponseAction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for BulkPluginActionResponseAction
impl<'de> Deserialize<'de> for BulkPluginActionResponseAction
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<&BulkPluginActionResponseAction> for BulkPluginActionResponseAction
impl From<&BulkPluginActionResponseAction> for BulkPluginActionResponseAction
Source§fn from(value: &BulkPluginActionResponseAction) -> Self
fn from(value: &BulkPluginActionResponseAction) -> Self
Converts to this type from the input type.
Source§impl Ord for BulkPluginActionResponseAction
impl Ord for BulkPluginActionResponseAction
Source§fn cmp(&self, other: &BulkPluginActionResponseAction) -> Ordering
fn cmp(&self, other: &BulkPluginActionResponseAction) -> Ordering
1.21.0 (const: unstable) · 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 BulkPluginActionResponseAction
impl PartialEq for BulkPluginActionResponseAction
Source§fn eq(&self, other: &BulkPluginActionResponseAction) -> bool
fn eq(&self, other: &BulkPluginActionResponseAction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for BulkPluginActionResponseAction
impl PartialOrd for BulkPluginActionResponseAction
Source§impl TryFrom<&String> for BulkPluginActionResponseAction
impl TryFrom<&String> for BulkPluginActionResponseAction
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for BulkPluginActionResponseAction
impl TryFrom<&str> for BulkPluginActionResponseAction
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for BulkPluginActionResponseAction
impl TryFrom<String> for BulkPluginActionResponseAction
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for BulkPluginActionResponseAction
impl Eq for BulkPluginActionResponseAction
impl StructuralPartialEq for BulkPluginActionResponseAction
Auto Trait Implementations§
impl Freeze for BulkPluginActionResponseAction
impl RefUnwindSafe for BulkPluginActionResponseAction
impl Send for BulkPluginActionResponseAction
impl Sync for BulkPluginActionResponseAction
impl Unpin for BulkPluginActionResponseAction
impl UnsafeUnpin for BulkPluginActionResponseAction
impl UnwindSafe for BulkPluginActionResponseAction
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