pub struct ScanProcessor<T> {
pub table_name: String,
pub output_file_name: String,
pub collector: Box<dyn CollectFiles>,
pub scaner: Box<dyn Scan<T>>,
}Fields§
§table_name: String§output_file_name: String§collector: Box<dyn CollectFiles>§scaner: Box<dyn Scan<T>>Implementations§
Source§impl<T> ScanProcessor<T>
impl<T> ScanProcessor<T>
Source§impl<T> ScanProcessor<T>
impl<T> ScanProcessor<T>
Auto Trait Implementations§
impl<T> Freeze for ScanProcessor<T>
impl<T> !RefUnwindSafe for ScanProcessor<T>
impl<T> !Send for ScanProcessor<T>
impl<T> !Sync for ScanProcessor<T>
impl<T> Unpin for ScanProcessor<T>
impl<T> !UnwindSafe for ScanProcessor<T>
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