#[repr(C)]pub struct ContentMask<P: Clone + Debug + Default + PartialEq> {
pub bounds: Bounds<P>,
pub corner_radii: Corners<P>,
}Expand description
Indicates which region of the window is visible. Content falling outside of this mask will not be rendered. A mask is a rectangle with optional corner radii, so a child of a rounded box is clipped to the shape rather than to its bounding box.
Fields§
§bounds: Bounds<P>The bounds
corner_radii: Corners<P>The corners the mask is rounded at, clipping children to the shape
rather than to bounds. All zero is a plain rectangle.
Implementations§
Source§impl ContentMask<Pixels>
impl ContentMask<Pixels>
Sourcepub fn scale(&self, factor: f32) -> ContentMask<ScaledPixels>
pub fn scale(&self, factor: f32) -> ContentMask<ScaledPixels>
Scale the content mask’s pixel units by the given scaling factor.
Sourcepub fn intersect(&self, other: &Self) -> Self
pub fn intersect(&self, other: &Self) -> Self
Intersect the content mask with the given content mask.
Two rounded rectangles do not intersect to a rounded rectangle, so only the nested case — one mask wholly inside the other — keeps its corners: whichever mask the intersection is supplies them. That covers every mask a layout nests, and a genuine partial overlap of two rounded masks falls back to the square intersection rather than inventing a shape.
Trait Implementations§
Source§impl<P: Clone + Clone + Debug + Default + PartialEq> Clone for ContentMask<P>
impl<P: Clone + Clone + Debug + Default + PartialEq> Clone for ContentMask<P>
Source§fn clone(&self) -> ContentMask<P>
fn clone(&self) -> ContentMask<P>
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreimpl<P: Copy + Clone + Debug + Default + PartialEq> Copy for ContentMask<P>
Source§impl<P: Default + Clone + Debug + Default + PartialEq> Default for ContentMask<P>
impl<P: Default + Clone + Debug + Default + PartialEq> Default for ContentMask<P>
Source§fn default() -> ContentMask<P>
fn default() -> ContentMask<P>
impl<P: Eq + Clone + Debug + Default + PartialEq> Eq for ContentMask<P>
impl<P: PartialEq + Clone + Debug + Default + PartialEq> StructuralPartialEq for ContentMask<P>
Auto Trait Implementations§
impl<P> Freeze for ContentMask<P>
impl<P> RefUnwindSafe for ContentMask<P>
impl<P> Send for ContentMask<P>
impl<P> Sync for ContentMask<P>
impl<P> Unpin for ContentMask<P>
impl<P> UnsafeUnpin for ContentMask<P>
impl<P> UnwindSafe for ContentMask<P>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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> ⓘ
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> ⓘ
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
ReadEndian::read_from_little_endian().