pub struct Geometry {
pub local_rect: LayoutRect,
pub device_rect: DeviceIntRect,
}
Expand description
Represents a local rect and a device space rectangles that are either outside or inside bounds.
Fields§
§local_rect: LayoutRect
§device_rect: DeviceIntRect
Trait Implementations§
source§impl From<Box2D<f32, LayoutPixel>> for Geometry
impl From<Box2D<f32, LayoutPixel>> for Geometry
source§fn from(local_rect: LayoutRect) -> Self
fn from(local_rect: LayoutRect) -> Self
Converts to this type from the input type.
source§impl PartialEq for Geometry
impl PartialEq for Geometry
impl StructuralPartialEq for Geometry
Auto Trait Implementations§
impl Freeze for Geometry
impl RefUnwindSafe for Geometry
impl Send for Geometry
impl Sync for Geometry
impl Unpin for Geometry
impl UnwindSafe for Geometry
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> 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