Struct epaint::ClippedShape
source · pub struct ClippedShape {
pub clip_rect: Rect,
pub shape: Shape,
}
Expand description
A Shape
within a clip rectangle.
Everything is using logical points.
Fields§
§clip_rect: Rect
Clip / scissor rectangle.
Only show the part of the Shape
that falls within this.
shape: Shape
The shape
Trait Implementations§
source§impl Clone for ClippedShape
impl Clone for ClippedShape
source§fn clone(&self) -> ClippedShape
fn clone(&self) -> ClippedShape
Returns a copy 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 ClippedShape
impl Debug for ClippedShape
source§impl PartialEq for ClippedShape
impl PartialEq for ClippedShape
source§fn eq(&self, other: &ClippedShape) -> bool
fn eq(&self, other: &ClippedShape) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ClippedShape
Auto Trait Implementations§
impl !RefUnwindSafe for ClippedShape
impl Send for ClippedShape
impl Sync for ClippedShape
impl Unpin for ClippedShape
impl !UnwindSafe for ClippedShape
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