pub struct ProcessedFile {
pub path: PathBuf,
pub original_content: String,
pub processed_content: String,
pub modified: bool,
pub comments_removed: usize,
pub important_removals: Vec<ImportantRemoval>,
}Fields§
§path: PathBuf§original_content: String§processed_content: String§modified: bool§comments_removed: usize§important_removals: Vec<ImportantRemoval>Trait Implementations§
Auto Trait Implementations§
impl Freeze for ProcessedFile
impl RefUnwindSafe for ProcessedFile
impl Send for ProcessedFile
impl Sync for ProcessedFile
impl Unpin for ProcessedFile
impl UnsafeUnpin for ProcessedFile
impl UnwindSafe for ProcessedFile
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