pub struct ColIndices {
pub id: Option<usize>,
pub val: usize,
}
Expand description
Structure storing the indices of:
- the column containing the identifier (if any)
- the column containing the value to be indexed
Fields§
§id: Option<usize>
§val: usize
Auto Trait Implementations§
impl Freeze for ColIndices
impl RefUnwindSafe for ColIndices
impl Send for ColIndices
impl Sync for ColIndices
impl Unpin for ColIndices
impl UnwindSafe for ColIndices
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