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