pub struct DatabaseFileScan {
pub header: FileHeader,
pub superblock: Option<Superblock>,
pub segments: Vec<SegmentMeta>,
pub catalog: Catalog,
}Expand description
Result of a read-only file scan (header, superblock, segments, decoded catalog).
Fields§
§header: FileHeader§superblock: Option<Superblock>§segments: Vec<SegmentMeta>§catalog: CatalogTrait Implementations§
Source§impl Clone for DatabaseFileScan
impl Clone for DatabaseFileScan
Source§fn clone(&self) -> DatabaseFileScan
fn clone(&self) -> DatabaseFileScan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DatabaseFileScan
impl RefUnwindSafe for DatabaseFileScan
impl Send for DatabaseFileScan
impl Sync for DatabaseFileScan
impl Unpin for DatabaseFileScan
impl UnsafeUnpin for DatabaseFileScan
impl UnwindSafe for DatabaseFileScan
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