pub enum DiskPtr {
Inline(LogId),
Blob(LogId, BlobPointer),
}Expand description
A pointer to a location on disk or an off-log blob.
Variants§
Inline(LogId)
Points to a value stored in the single-file log.
Blob(LogId, BlobPointer)
Points to a value stored off-log in the blob directory.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DiskPtr
impl<'de> Deserialize<'de> for DiskPtr
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for DiskPtr
impl Ord for DiskPtr
Source§impl PartialOrd for DiskPtr
impl PartialOrd for DiskPtr
impl Copy for DiskPtr
impl Eq for DiskPtr
impl StructuralPartialEq for DiskPtr
Auto Trait Implementations§
impl Freeze for DiskPtr
impl RefUnwindSafe for DiskPtr
impl Send for DiskPtr
impl Sync for DiskPtr
impl Unpin for DiskPtr
impl UnwindSafe for DiskPtr
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