enum ResolvedEntry<ObjectID: FsVerityHashValue> {
Inline(Vec<u8>),
External {
id: ObjectID,
size: u64,
},
}Expand description
Internal type for resolved entries after awaiting handles.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<ObjectID> Freeze for ResolvedEntry<ObjectID>where
ObjectID: Freeze,
impl<ObjectID> RefUnwindSafe for ResolvedEntry<ObjectID>where
ObjectID: RefUnwindSafe,
impl<ObjectID> Send for ResolvedEntry<ObjectID>
impl<ObjectID> Sync for ResolvedEntry<ObjectID>
impl<ObjectID> Unpin for ResolvedEntry<ObjectID>
impl<ObjectID> UnwindSafe for ResolvedEntry<ObjectID>where
ObjectID: UnwindSafe,
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