pub struct EditorConfigResolution {
pub settings: EditorConfigSettings,
pub warnings: Vec<EditorConfigWarning>,
pub origin: Option<String>,
}Expand description
What the .editorconfig files applying to one file resolve to.
Fields§
§settings: EditorConfigSettings§warnings: Vec<EditorConfigWarning>§origin: Option<String>The .editorconfig file that supplied a mapped value.
Trait Implementations§
Source§impl Clone for EditorConfigResolution
impl Clone for EditorConfigResolution
Source§fn clone(&self) -> EditorConfigResolution
fn clone(&self) -> EditorConfigResolution
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 EditorConfigResolution
impl Debug for EditorConfigResolution
Source§impl Default for EditorConfigResolution
impl Default for EditorConfigResolution
Source§fn default() -> EditorConfigResolution
fn default() -> EditorConfigResolution
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EditorConfigResolution
impl RefUnwindSafe for EditorConfigResolution
impl Send for EditorConfigResolution
impl Sync for EditorConfigResolution
impl Unpin for EditorConfigResolution
impl UnsafeUnpin for EditorConfigResolution
impl UnwindSafe for EditorConfigResolution
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