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