pub enum SectionOrder {
Default,
CoverageFirst,
}Expand description
Section ordering configuration
§Examples
use shiplog_render_md::SectionOrder;
let order = SectionOrder::default();
assert_eq!(order, SectionOrder::Default);Variants§
Default
Default order: Summary, Workstreams, Receipts, Coverage
CoverageFirst
Alternative order: Coverage, Summary, Workstreams, Receipts
Trait Implementations§
Source§impl Clone for SectionOrder
impl Clone for SectionOrder
Source§fn clone(&self) -> SectionOrder
fn clone(&self) -> SectionOrder
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 SectionOrder
impl Debug for SectionOrder
Source§impl Default for SectionOrder
impl Default for SectionOrder
Source§fn default() -> SectionOrder
fn default() -> SectionOrder
Returns the “default value” for a type. Read more
Source§impl PartialEq for SectionOrder
impl PartialEq for SectionOrder
Source§fn eq(&self, other: &SectionOrder) -> bool
fn eq(&self, other: &SectionOrder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SectionOrder
impl Eq for SectionOrder
impl StructuralPartialEq for SectionOrder
Auto Trait Implementations§
impl Freeze for SectionOrder
impl RefUnwindSafe for SectionOrder
impl Send for SectionOrder
impl Sync for SectionOrder
impl Unpin for SectionOrder
impl UnsafeUnpin for SectionOrder
impl UnwindSafe for SectionOrder
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.