pub enum WindowUpdate {
Title(String),
Icon(Option<Image>),
Size(Size),
Scale(f32),
Resizable(bool),
Decorated(bool),
Maximized(bool),
Visible(bool),
Color(Option<Color>),
Cursor(Cursor),
Ime(Option<Ime>),
}
Expand description
An update to a window.
Variants§
Title(String)
Set the title of the window.
Icon(Option<Image>)
Set the icon of the window.
Size(Size)
Set the size of the window.
Scale(f32)
Set the scale of the window.
Resizable(bool)
Set whether the window is resizable.
Decorated(bool)
Set whether the window is decorated.
Maximized(bool)
Set whether the window is maximized.
Visible(bool)
Set whether the window is visible.
Color(Option<Color>)
Set the color of the window.
Cursor(Cursor)
Set the cursor of the window.
Ime(Option<Ime>)
Set the ime state of the window.
Trait Implementations§
Source§impl Clone for WindowUpdate
impl Clone for WindowUpdate
Source§fn clone(&self) -> WindowUpdate
fn clone(&self) -> WindowUpdate
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 WindowUpdate
impl Debug for WindowUpdate
Source§impl PartialEq for WindowUpdate
impl PartialEq for WindowUpdate
impl StructuralPartialEq for WindowUpdate
Auto Trait Implementations§
impl Freeze for WindowUpdate
impl RefUnwindSafe for WindowUpdate
impl Send for WindowUpdate
impl Sync for WindowUpdate
impl Unpin for WindowUpdate
impl UnwindSafe for WindowUpdate
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