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