pub struct Source {
pub kind: SourceKind,
pub path: PathBuf,
pub windows: Vec<Window>,
}Expand description
One decoded session file: its kind, path, and reconstructed windows.
Fields§
§kind: SourceKindWhich file family this came from.
path: PathBufAbsolute path to the file it was decoded from.
windows: Vec<Window>Windows reconstructed from this file.
Trait Implementations§
impl Eq for Source
impl StructuralPartialEq for Source
Auto Trait Implementations§
impl Freeze for Source
impl RefUnwindSafe for Source
impl Send for Source
impl Sync for Source
impl Unpin for Source
impl UnsafeUnpin for Source
impl UnwindSafe for Source
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