#[non_exhaustive]pub enum RdGenerator {
Roxygen2,
Unknown(String),
}Expand description
The generator that produced a documentation header.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for RdGenerator
impl Clone for RdGenerator
Source§fn clone(&self) -> RdGenerator
fn clone(&self) -> RdGenerator
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 RdGenerator
impl Debug for RdGenerator
impl Eq for RdGenerator
Source§impl Hash for RdGenerator
impl Hash for RdGenerator
Source§impl PartialEq for RdGenerator
impl PartialEq for RdGenerator
impl StructuralPartialEq for RdGenerator
Auto Trait Implementations§
impl Freeze for RdGenerator
impl RefUnwindSafe for RdGenerator
impl Send for RdGenerator
impl Sync for RdGenerator
impl Unpin for RdGenerator
impl UnsafeUnpin for RdGenerator
impl UnwindSafe for RdGenerator
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