pub struct FileProcessor { /* private fields */ }Implementations§
Source§impl FileProcessor
impl FileProcessor
pub fn new(options: ProcessingOptions) -> Self
pub fn with_default_rules(options: ProcessingOptions) -> Self
pub fn with_fix_mode(options: ProcessingOptions) -> Self
pub fn with_config(options: ProcessingOptions, config: Config) -> Self
pub fn with_config_and_fix_mode( options: ProcessingOptions, config: Config, ) -> Self
pub fn add_rule(&mut self, rule: Box<dyn Rule>)
pub fn process_file<P: AsRef<Path>>(&self, file_path: P) -> Result<LintResult>
pub fn process_directory<P: AsRef<Path>>(&self, dir_path: P) -> Result<usize>
Auto Trait Implementations§
impl Freeze for FileProcessor
impl !RefUnwindSafe for FileProcessor
impl Send for FileProcessor
impl Sync for FileProcessor
impl Unpin for FileProcessor
impl !UnwindSafe for FileProcessor
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more