pub struct DocSection {
pub include: bool,
pub label: &'static str,
pub description: Option<&'static str>,
}
Fields§
§include: bool
True to include this doc section in the public documentation, false otherwise
label: &'static str
A display label for the doc section. For example: “Math Expressions”
description: Option<&'static str>
An optional description for the doc section
Trait Implementations§
Source§impl Clone for DocSection
impl Clone for DocSection
Source§fn clone(&self) -> DocSection
fn clone(&self) -> DocSection
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 Debug for DocSection
impl Debug for DocSection
Source§impl PartialEq for DocSection
impl PartialEq for DocSection
impl StructuralPartialEq for DocSection
Auto Trait Implementations§
impl Freeze for DocSection
impl RefUnwindSafe for DocSection
impl Send for DocSection
impl Sync for DocSection
impl Unpin for DocSection
impl UnwindSafe for DocSection
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more