pub struct ParsedFile {
pub path: PathBuf,
pub content: ModuleContent,
pub original_source: String,
}Expand description
Represents a parsed Rust file with its content and metadata
Fields§
§path: PathBuf§content: ModuleContent§original_source: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for ParsedFile
impl RefUnwindSafe for ParsedFile
impl !Send for ParsedFile
impl !Sync for ParsedFile
impl Unpin for ParsedFile
impl UnwindSafe for ParsedFile
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