pub enum SectionPattern {
Simple(String),
SortByName(String),
SortByAlignment(String),
SortByInitPriority(String),
SortNone(String),
ExcludeFile {
files: Vec<String>,
pattern: Box<SectionPattern>,
},
}
Variants§
Simple(String)
SortByName(String)
SortByAlignment(String)
SortByInitPriority(String)
SortNone(String)
ExcludeFile
Trait Implementations§
Source§impl Debug for SectionPattern
impl Debug for SectionPattern
Source§impl PartialEq for SectionPattern
impl PartialEq for SectionPattern
impl StructuralPartialEq for SectionPattern
Auto Trait Implementations§
impl Freeze for SectionPattern
impl RefUnwindSafe for SectionPattern
impl Send for SectionPattern
impl Sync for SectionPattern
impl Unpin for SectionPattern
impl UnwindSafe for SectionPattern
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