pub struct ColAndPos<C> {
pub values: C,
pub positions: Vec<IdxLen>,
}Expand description
A collected payload together with its chunk positions.
Fields§
§values: CCollected values.
positions: Vec<IdxLen>Source positions for each collected chunk.
Trait Implementations§
Auto Trait Implementations§
impl<C> Freeze for ColAndPos<C>where
C: Freeze,
impl<C> RefUnwindSafe for ColAndPos<C>where
C: RefUnwindSafe,
impl<C> Send for ColAndPos<C>where
C: Send,
impl<C> Sync for ColAndPos<C>where
C: Sync,
impl<C> Unpin for ColAndPos<C>where
C: Unpin,
impl<C> UnsafeUnpin for ColAndPos<C>where
C: UnsafeUnpin,
impl<C> UnwindSafe for ColAndPos<C>where
C: 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