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