pub struct RenderSize {
pub render_width: u32,
pub render_height: u32,
pub render_and_frame_size_different: bool,
}Expand description
Render size for display (may differ from coded size).
Fields§
§render_width: u32Render width in pixels.
render_height: u32Render height in pixels.
render_and_frame_size_different: boolWhether render size differs from frame size.
Trait Implementations§
Source§impl Clone for RenderSize
impl Clone for RenderSize
Source§fn clone(&self) -> RenderSize
fn clone(&self) -> RenderSize
Returns a duplicate 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 RenderSize
impl Debug for RenderSize
Source§impl Default for RenderSize
impl Default for RenderSize
Source§fn default() -> RenderSize
fn default() -> RenderSize
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RenderSize
impl RefUnwindSafe for RenderSize
impl Send for RenderSize
impl Sync for RenderSize
impl Unpin for RenderSize
impl UnsafeUnpin for RenderSize
impl UnwindSafe for RenderSize
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