pub enum WindowExclude {
NoOthers,
CurrentRow,
Group,
Ties,
}Expand description
Which peers of the current row the frame drops once its bounds have been applied.
Variants§
NoOthers
EXCLUDE NO OTHERS, which is also what an unwritten clause means.
CurrentRow
EXCLUDE CURRENT ROW.
Group
EXCLUDE GROUP, dropping the current row and everything that ties with it.
Ties
EXCLUDE TIES, dropping everything that ties with the current row but keeping it.
Trait Implementations§
Source§impl Clone for WindowExclude
impl Clone for WindowExclude
Source§fn clone(&self) -> WindowExclude
fn clone(&self) -> WindowExclude
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 WindowExclude
Source§impl Debug for WindowExclude
impl Debug for WindowExclude
impl Eq for WindowExclude
Source§impl PartialEq for WindowExclude
impl PartialEq for WindowExclude
impl StructuralPartialEq for WindowExclude
Auto Trait Implementations§
impl Freeze for WindowExclude
impl RefUnwindSafe for WindowExclude
impl Send for WindowExclude
impl Sync for WindowExclude
impl Unpin for WindowExclude
impl UnsafeUnpin for WindowExclude
impl UnwindSafe for WindowExclude
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