pub struct InverseTable {
pub column_value_keys_except: HashMap<(usize, usize), HashSet<usize>>,
pub row_value_keys_except: HashMap<(usize, usize), HashSet<usize>>,
}
Fields§
§column_value_keys_except: HashMap<(usize, usize), HashSet<usize>>
§row_value_keys_except: HashMap<(usize, usize), HashSet<usize>>
Implementations§
Source§impl InverseTable
impl InverseTable
Trait Implementations§
Source§impl Clone for InverseTable
impl Clone for InverseTable
Source§fn clone(&self) -> InverseTable
fn clone(&self) -> InverseTable
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for InverseTable
impl RefUnwindSafe for InverseTable
impl Send for InverseTable
impl Sync for InverseTable
impl Unpin for InverseTable
impl UnwindSafe for InverseTable
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