pub enum WindowSizing {
Fixed,
Content,
}
Expand description
The sizing of a window.
Variants§
Fixed
The window will have a fixed size equal to Window::size
.
Content
The root View
will have Space::UNBOUNDED
, and the window will
resize to fit the content.
Trait Implementations§
Source§impl Clone for WindowSizing
impl Clone for WindowSizing
Source§fn clone(&self) -> WindowSizing
fn clone(&self) -> WindowSizing
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 WindowSizing
impl Debug for WindowSizing
Source§impl Default for WindowSizing
impl Default for WindowSizing
Source§fn default() -> WindowSizing
fn default() -> WindowSizing
Returns the “default value” for a type. Read more
Source§impl PartialEq for WindowSizing
impl PartialEq for WindowSizing
impl Copy for WindowSizing
impl Eq for WindowSizing
impl StructuralPartialEq for WindowSizing
Auto Trait Implementations§
impl Freeze for WindowSizing
impl RefUnwindSafe for WindowSizing
impl Send for WindowSizing
impl Sync for WindowSizing
impl Unpin for WindowSizing
impl UnwindSafe for WindowSizing
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