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