pub struct WindowScaled {
pub window: WindowId,
pub scale_factor: f32,
}
Expand description
Event emitted when a window is scaled.
Fields§
§window: WindowId
The window that was scaled.
scale_factor: f32
The new scale factor of the window.
Trait Implementations§
Source§impl Clone for WindowScaled
impl Clone for WindowScaled
Source§fn clone(&self) -> WindowScaled
fn clone(&self) -> WindowScaled
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 WindowScaled
impl Debug for WindowScaled
Source§impl PartialEq for WindowScaled
impl PartialEq for WindowScaled
impl Copy for WindowScaled
impl StructuralPartialEq for WindowScaled
Auto Trait Implementations§
impl Freeze for WindowScaled
impl RefUnwindSafe for WindowScaled
impl Send for WindowScaled
impl Sync for WindowScaled
impl Unpin for WindowScaled
impl UnwindSafe for WindowScaled
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