pub struct BlobFileAdditionInfo<'a> { /* private fields */ }Expand description
A blob file created by a flush or compaction, borrowed from the job info that listed it.
Implementations§
Source§impl<'a> BlobFileAdditionInfo<'a>
impl<'a> BlobFileAdditionInfo<'a>
Sourcepub fn blob_file_path(&self) -> &'a [u8] ⓘ
pub fn blob_file_path(&self) -> &'a [u8] ⓘ
Path of the blob file, borrowed as raw bytes.
Sourcepub fn blob_file_number(&self) -> u64
pub fn blob_file_number(&self) -> u64
File number of the blob file.
Sourcepub fn total_blob_count(&self) -> u64
pub fn total_blob_count(&self) -> u64
Number of blobs written to the file.
Sourcepub fn total_blob_bytes(&self) -> u64
pub fn total_blob_bytes(&self) -> u64
Total size of the blobs written to the file, in bytes.
Auto Trait Implementations§
impl<'a> !Send for BlobFileAdditionInfo<'a>
impl<'a> !Sync for BlobFileAdditionInfo<'a>
impl<'a> Freeze for BlobFileAdditionInfo<'a>
impl<'a> RefUnwindSafe for BlobFileAdditionInfo<'a>
impl<'a> Unpin for BlobFileAdditionInfo<'a>
impl<'a> UnsafeUnpin for BlobFileAdditionInfo<'a>
impl<'a> UnwindSafe for BlobFileAdditionInfo<'a>
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