pub enum GroupingSetKind {
GROUPING_SET_EMPTY = 0,
GROUPING_SET_SIMPLE = 1,
GROUPING_SET_ROLLUP = 2,
GROUPING_SET_CUBE = 3,
GROUPING_SET_SETS = 4,
}Variants§
GROUPING_SET_EMPTY = 0
GROUPING_SET_SIMPLE = 1
GROUPING_SET_ROLLUP = 2
GROUPING_SET_CUBE = 3
GROUPING_SET_SETS = 4
Trait Implementations§
Source§impl Clone for GroupingSetKind
impl Clone for GroupingSetKind
Source§fn clone(&self) -> GroupingSetKind
fn clone(&self) -> GroupingSetKind
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 GroupingSetKind
impl Debug for GroupingSetKind
Source§impl<'de> Deserialize<'de> for GroupingSetKind
impl<'de> Deserialize<'de> for GroupingSetKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GroupingSetKind
impl PartialEq for GroupingSetKind
impl Copy for GroupingSetKind
impl Eq for GroupingSetKind
impl StructuralPartialEq for GroupingSetKind
Auto Trait Implementations§
impl Freeze for GroupingSetKind
impl RefUnwindSafe for GroupingSetKind
impl Send for GroupingSetKind
impl Sync for GroupingSetKind
impl Unpin for GroupingSetKind
impl UnwindSafe for GroupingSetKind
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