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