pub struct ChunkEntry {
pub id: u64,
pub bundle_size: u32,
pub target_size: u32,
pub bundle_offset: u32,
}Expand description
Chunk information from RMAN
Fields§
§id: u64Chunk ID
bundle_size: u32Size of chunk in bundle, compressed
target_size: u32Size of chunk, uncompressed
bundle_offset: u32Offset of chunk in bundle
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChunkEntry
impl RefUnwindSafe for ChunkEntry
impl Send for ChunkEntry
impl Sync for ChunkEntry
impl Unpin for ChunkEntry
impl UnwindSafe for ChunkEntry
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