pub struct EditorConfigSection {
pub name: String,
pub matcher: Option<GlobMatcher>,
pub properties: EditorConfigProperties,
}Expand description
Fields§
§name: StringSection Name: the string between the beginning [ and the ending ].
matcher: Option<GlobMatcher>§properties: EditorConfigPropertiesTrait Implementations§
Source§impl Clone for EditorConfigSection
impl Clone for EditorConfigSection
Source§fn clone(&self) -> EditorConfigSection
fn clone(&self) -> EditorConfigSection
Returns a duplicate 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 EditorConfigSection
impl Debug for EditorConfigSection
Source§impl Default for EditorConfigSection
impl Default for EditorConfigSection
Source§fn default() -> EditorConfigSection
fn default() -> EditorConfigSection
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EditorConfigSection
impl RefUnwindSafe for EditorConfigSection
impl Send for EditorConfigSection
impl Sync for EditorConfigSection
impl Unpin for EditorConfigSection
impl UnwindSafe for EditorConfigSection
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