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§
impl Copy for DiskPtr
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
impl Eq for DiskPtr
Source§impl Ord for DiskPtr
impl Ord for DiskPtr
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for DiskPtr
impl PartialOrd 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 UnsafeUnpin 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