pub enum FrameExclusion {
NoOthers,
CurrentRow,
Group,
Ties,
}Expand description
Which rows a frame leaves out despite their being inside it.
Variants§
NoOthers
EXCLUDE NO OTHERS — the default; excludes nothing.
CurrentRow
EXCLUDE CURRENT ROW.
Group
EXCLUDE GROUP — the current row and all its peers.
Ties
EXCLUDE TIES — the current row’s peers, but not the row itself.
Implementations§
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
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