pub struct ClipStack { /* private fields */ }Expand description
A stack of nested clip rectangles.
The effective clip is always the intersection of every pushed rectangle,
maintained incrementally as current.
Implementations§
Source§impl ClipStack
impl ClipStack
Sourcepub fn new(width: u32, height: u32) -> Self
pub fn new(width: u32, height: u32) -> Self
Create a stack whose base clip covers the whole framebuffer.
Sourcepub fn current(&self) -> ClipRect
pub fn current(&self) -> ClipRect
The current effective clip (intersection of all pushed rects).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ClipStack
impl RefUnwindSafe for ClipStack
impl Send for ClipStack
impl Sync for ClipStack
impl Unpin for ClipStack
impl UnsafeUnpin for ClipStack
impl UnwindSafe for ClipStack
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more