pub enum DocumentationFormat {
Markdown,
Html,
PlainText,
Rst,
Asciidoc,
}
Expand description
Documentation format classification
Variants§
Trait Implementations§
Source§impl Clone for DocumentationFormat
impl Clone for DocumentationFormat
Source§fn clone(&self) -> DocumentationFormat
fn clone(&self) -> DocumentationFormat
Returns a duplicate 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 Debug for DocumentationFormat
impl Debug for DocumentationFormat
Source§impl<'de> Deserialize<'de> for DocumentationFormat
impl<'de> Deserialize<'de> for DocumentationFormat
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 Hash for DocumentationFormat
impl Hash for DocumentationFormat
Source§impl PartialEq for DocumentationFormat
impl PartialEq for DocumentationFormat
Source§impl Serialize for DocumentationFormat
impl Serialize for DocumentationFormat
impl Eq for DocumentationFormat
impl StructuralPartialEq for DocumentationFormat
Auto Trait Implementations§
impl Freeze for DocumentationFormat
impl RefUnwindSafe for DocumentationFormat
impl Send for DocumentationFormat
impl Sync for DocumentationFormat
impl Unpin for DocumentationFormat
impl UnwindSafe for DocumentationFormat
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