pub struct SummaryOptions {
pub enabled: bool,
pub value_style: SummaryValueStyle,
pub include_description: bool,
pub entry: SummaryEntryStyle,
}Expand description
Rendering options for the parameter summary.
Fields§
§enabled: boolInclude the parameter summary.
value_style: SummaryValueStyleControls whether values like <CONFIG> are shown in summary entries.
include_description: boolInclude the first line of each parameter description.
entry: SummaryEntryStyleControls how each parameter summary entry is rendered.
Trait Implementations§
Source§impl Clone for SummaryOptions
impl Clone for SummaryOptions
Source§fn clone(&self) -> SummaryOptions
fn clone(&self) -> SummaryOptions
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 SummaryOptions
impl Debug for SummaryOptions
Auto Trait Implementations§
impl !RefUnwindSafe for SummaryOptions
impl !UnwindSafe for SummaryOptions
impl Freeze for SummaryOptions
impl Send for SummaryOptions
impl Sync for SummaryOptions
impl Unpin for SummaryOptions
impl UnsafeUnpin for SummaryOptions
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