pub struct SpillEntry<T, K> {
pub row: T,
pub keys: K,
}Expand description
One decoded entry from a spill run.
Fields§
§row: TDecoded row payload.
keys: KDecoded sort key payload.
Auto Trait Implementations§
impl<T, K> Freeze for SpillEntry<T, K>
impl<T, K> RefUnwindSafe for SpillEntry<T, K>where
T: RefUnwindSafe,
K: RefUnwindSafe,
impl<T, K> Send for SpillEntry<T, K>
impl<T, K> Sync for SpillEntry<T, K>
impl<T, K> Unpin for SpillEntry<T, K>
impl<T, K> UnsafeUnpin for SpillEntry<T, K>where
T: UnsafeUnpin,
K: UnsafeUnpin,
impl<T, K> UnwindSafe for SpillEntry<T, K>where
T: UnwindSafe,
K: 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