#[repr(C, align(8))]pub struct ViewRect {
pub x: f32,
pub y: f32,
pub width: f32,
pub height: f32,
}Expand description
ISO 32000-2:2020(E) Table 58 Pg 186 - ViewRect Path construction operators - {x y width height re} Append a rectangle to the current path as a complete subpath, with lower-left corner (x, y) and dimensions width and height in user space.
Fields§
§x: f32§y: f32§width: f32§height: f32Trait Implementations§
Source§impl DataSize for ViewRect
impl DataSize for ViewRect
Source§const IS_DYNAMIC: bool = false
const IS_DYNAMIC: bool = false
If
true, the type has a heap size that can vary at runtime, depending on the actual value.Source§const STATIC_HEAP_SIZE: usize = 0usize
const STATIC_HEAP_SIZE: usize = 0usize
The amount of space a value of the type always occupies. If
IS_DYNAMIC is false, this is
the total amount of heap memory occupied by the value. Otherwise this is a lower bound.Source§fn estimate_heap_size(&self) -> usize
fn estimate_heap_size(&self) -> usize
Estimates the size of heap memory taken up by this value. Read more
impl Copy for ViewRect
impl StructuralPartialEq for ViewRect
Auto Trait Implementations§
impl Freeze for ViewRect
impl RefUnwindSafe for ViewRect
impl Send for ViewRect
impl Sync for ViewRect
impl Unpin for ViewRect
impl UnwindSafe for ViewRect
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