pub enum LocalSumType {
WideNeighbor,
NarrowNeighbor,
WideColumn,
NarrowColumn,
}Expand description
Local sum type.
Variants§
WideNeighbor
Wide neighbor-oriented local sums.
NarrowNeighbor
Narrow neighbor-oriented local sums.
WideColumn
Wide column-oriented local sums.
NarrowColumn
Narrow column-oriented local sums.
Trait Implementations§
Source§impl Clone for LocalSumType
impl Clone for LocalSumType
Source§fn clone(&self) -> LocalSumType
fn clone(&self) -> LocalSumType
Returns a duplicate 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 moreSource§impl Debug for LocalSumType
impl Debug for LocalSumType
Source§impl PartialEq for LocalSumType
impl PartialEq for LocalSumType
impl Copy for LocalSumType
impl Eq for LocalSumType
impl StructuralPartialEq for LocalSumType
Auto Trait Implementations§
impl Freeze for LocalSumType
impl RefUnwindSafe for LocalSumType
impl Send for LocalSumType
impl Sync for LocalSumType
impl Unpin for LocalSumType
impl UnsafeUnpin for LocalSumType
impl UnwindSafe for LocalSumType
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