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