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