pub struct ColGraph {
pub names: Vec<String>,
pub dropped: HashSet<usize>,
}Expand description
Maps column index in ChunkTable -> original name; which indices are dropped from preprocessing.
Fields§
§names: Vec<String>§dropped: HashSet<usize>Implementations§
Trait Implementations§
impl Eq for ColGraph
impl StructuralPartialEq for ColGraph
Auto Trait Implementations§
impl Freeze for ColGraph
impl RefUnwindSafe for ColGraph
impl Send for ColGraph
impl Sync for ColGraph
impl Unpin for ColGraph
impl UnsafeUnpin for ColGraph
impl UnwindSafe for ColGraph
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.