pub enum FrameExclusion {
NoOthers,
CurrentRow,
Group,
Ties,
}Variants§
NoOthers
Default — exclude nothing.
CurrentRow
Drop the current row from the frame.
Group
Drop the current row’s whole peer group.
Ties
Drop the current row’s peers but keep the current row.
Trait Implementations§
Source§impl Clone for FrameExclusion
impl Clone for FrameExclusion
Source§fn clone(&self) -> FrameExclusion
fn clone(&self) -> FrameExclusion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FrameExclusion
Source§impl Debug for FrameExclusion
impl Debug for FrameExclusion
Source§impl Default for FrameExclusion
impl Default for FrameExclusion
Source§fn default() -> FrameExclusion
fn default() -> FrameExclusion
Returns the “default value” for a type. Read more
impl Eq for FrameExclusion
Source§impl PartialEq for FrameExclusion
impl PartialEq for FrameExclusion
impl StructuralPartialEq for FrameExclusion
Auto Trait Implementations§
impl Freeze for FrameExclusion
impl RefUnwindSafe for FrameExclusion
impl Send for FrameExclusion
impl Sync for FrameExclusion
impl Unpin for FrameExclusion
impl UnsafeUnpin for FrameExclusion
impl UnwindSafe for FrameExclusion
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