Struct bevy_internal::window::WindowResizeConstraints  
source · pub struct WindowResizeConstraints {
    pub min_width: f32,
    pub min_height: f32,
    pub max_width: f32,
    pub max_height: f32,
}Expand description
The size limits on a window.
These values are measured in logical pixels, so the user’s scale factor does affect the size limits on the window. Please note that if the window is resizable, then when the window is maximized it may have a size outside of these limits. The functionality required to disable maximizing is not yet exposed by winit.
Fields§
§min_width: f32The minimum width the window can have.
min_height: f32The minimum height the window can have.
max_width: f32The maximum width the window can have.
max_height: f32The maximum height the window can have.
Implementations§
source§impl WindowResizeConstraints
 
impl WindowResizeConstraints
sourcepub fn check_constraints(&self) -> WindowResizeConstraints
 
pub fn check_constraints(&self) -> WindowResizeConstraints
Checks if the constraints are valid.
Will output warnings if it isn’t.
Trait Implementations§
source§impl Clone for WindowResizeConstraints
 
impl Clone for WindowResizeConstraints
source§fn clone(&self) -> WindowResizeConstraints
 
fn clone(&self) -> WindowResizeConstraints
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 WindowResizeConstraints
 
impl Debug for WindowResizeConstraints
source§impl Default for WindowResizeConstraints
 
impl Default for WindowResizeConstraints
source§fn default() -> WindowResizeConstraints
 
fn default() -> WindowResizeConstraints
Returns the “default value” for a type. Read more
source§impl FromReflect for WindowResizeConstraintswhere
    f32: FromReflect,
 
impl FromReflect for WindowResizeConstraintswhere f32: FromReflect,
source§fn from_reflect(
    reflect: &(dyn Reflect + 'static)
) -> Option<WindowResizeConstraints>
 
fn from_reflect( reflect: &(dyn Reflect + 'static) ) -> Option<WindowResizeConstraints>
Constructs a concrete instance of 
Self from a reflected value.source§impl GetTypeRegistration for WindowResizeConstraintswhere
    f32: Reflect,
 
impl GetTypeRegistration for WindowResizeConstraintswhere f32: Reflect,
source§impl PartialEq<WindowResizeConstraints> for WindowResizeConstraints
 
impl PartialEq<WindowResizeConstraints> for WindowResizeConstraints
source§fn eq(&self, other: &WindowResizeConstraints) -> bool
 
fn eq(&self, other: &WindowResizeConstraints) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Reflect for WindowResizeConstraintswhere
    f32: Reflect,
 
impl Reflect for WindowResizeConstraintswhere f32: Reflect,
source§fn get_type_info(&self) -> &'static TypeInfo
 
fn get_type_info(&self) -> &'static TypeInfo
source§fn into_any(
    self: Box<WindowResizeConstraints, Global>
) -> Box<dyn Any + 'static, Global>
 
fn into_any( self: Box<WindowResizeConstraints, Global> ) -> Box<dyn Any + 'static, Global>
Returns the value as a 
Box<dyn Any>.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
 
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Returns the value as a 
&mut dyn Any.source§fn into_reflect(
    self: Box<WindowResizeConstraints, Global>
) -> Box<dyn Reflect + 'static, Global>
 
fn into_reflect( self: Box<WindowResizeConstraints, Global> ) -> Box<dyn Reflect + 'static, Global>
Casts this type to a boxed reflected value.
source§fn as_reflect(&self) -> &(dyn Reflect + 'static)
 
fn as_reflect(&self) -> &(dyn Reflect + 'static)
Casts this type to a reflected value.
source§fn as_reflect_mut(&mut self) -> &mut (dyn Reflect + 'static)
 
fn as_reflect_mut(&mut self) -> &mut (dyn Reflect + 'static)
Casts this type to a mutable reflected value.
source§fn clone_value(&self) -> Box<dyn Reflect + 'static, Global>
 
fn clone_value(&self) -> Box<dyn Reflect + 'static, Global>
Clones the value as a 
Reflect trait object. Read moresource§fn set(
    &mut self,
    value: Box<dyn Reflect + 'static, Global>
) -> Result<(), Box<dyn Reflect + 'static, Global>>
 
fn set( &mut self, value: Box<dyn Reflect + 'static, Global> ) -> Result<(), Box<dyn Reflect + 'static, Global>>
Performs a type-checked assignment of a reflected value to this value. Read more
source§fn apply(&mut self, value: &(dyn Reflect + 'static))
 
fn apply(&mut self, value: &(dyn Reflect + 'static))
Applies a reflected value to this value. Read more
source§fn reflect_ref(&self) -> ReflectRef<'_>
 
fn reflect_ref(&self) -> ReflectRef<'_>
Returns an enumeration of “kinds” of type. Read more
source§fn reflect_mut(&mut self) -> ReflectMut<'_>
 
fn reflect_mut(&mut self) -> ReflectMut<'_>
Returns a mutable enumeration of “kinds” of type. Read more
source§fn reflect_owned(self: Box<WindowResizeConstraints, Global>) -> ReflectOwned
 
fn reflect_owned(self: Box<WindowResizeConstraints, Global>) -> ReflectOwned
Returns an owned enumeration of “kinds” of type. Read more
source§fn reflect_partial_eq(&self, value: &(dyn Reflect + 'static)) -> Option<bool>
 
fn reflect_partial_eq(&self, value: &(dyn Reflect + 'static)) -> Option<bool>
Returns a “partial equality” comparison result. Read more
source§fn debug(&self, f: &mut Formatter<'_>) -> Result<(), Error>
 
fn debug(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Debug formatter for the value. Read more
source§fn reflect_hash(&self) -> Option<u64>
 
fn reflect_hash(&self) -> Option<u64>
Returns a hash of the value (which includes the type). Read more
source§fn serializable(&self) -> Option<Serializable<'_>>
 
fn serializable(&self) -> Option<Serializable<'_>>
Returns a serializable version of the value. Read more
source§impl Struct for WindowResizeConstraintswhere
    f32: Reflect,
 
impl Struct for WindowResizeConstraintswhere f32: Reflect,
source§fn field(&self, name: &str) -> Option<&(dyn Reflect + 'static)>
 
fn field(&self, name: &str) -> Option<&(dyn Reflect + 'static)>
Returns a reference to the value of the field named 
name as a &dyn Reflect.source§fn field_mut(&mut self, name: &str) -> Option<&mut (dyn Reflect + 'static)>
 
fn field_mut(&mut self, name: &str) -> Option<&mut (dyn Reflect + 'static)>
Returns a mutable reference to the value of the field named 
name as a
&mut dyn Reflect.source§fn field_at(&self, index: usize) -> Option<&(dyn Reflect + 'static)>
 
fn field_at(&self, index: usize) -> Option<&(dyn Reflect + 'static)>
Returns a reference to the value of the field with index 
index as a
&dyn Reflect.source§fn field_at_mut(&mut self, index: usize) -> Option<&mut (dyn Reflect + 'static)>
 
fn field_at_mut(&mut self, index: usize) -> Option<&mut (dyn Reflect + 'static)>
Returns a mutable reference to the value of the field with index 
index
as a &mut dyn Reflect.source§fn name_at(&self, index: usize) -> Option<&str>
 
fn name_at(&self, index: usize) -> Option<&str>
Returns the name of the field with index 
index.source§fn iter_fields(&self) -> FieldIter<'_> ⓘ
 
fn iter_fields(&self) -> FieldIter<'_> ⓘ
Returns an iterator over the values of the reflectable fields for this struct.
source§fn clone_dynamic(&self) -> DynamicStruct
 
fn clone_dynamic(&self) -> DynamicStruct
Clones the struct into a 
DynamicStruct.impl Copy for WindowResizeConstraints
impl StructuralPartialEq for WindowResizeConstraints
Auto Trait Implementations§
impl RefUnwindSafe for WindowResizeConstraints
impl Send for WindowResizeConstraints
impl Sync for WindowResizeConstraints
impl Unpin for WindowResizeConstraints
impl UnwindSafe for WindowResizeConstraints
Blanket Implementations§
§impl<T> Downcast for Twhere
    T: Any,
 
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
 
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert 
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
 
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert 
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
 
fn as_any(&self) -> &(dyn Any + 'static)
Convert 
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
 
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert 
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.source§impl<T> FromWorld for Twhere
    T: Default,
 
impl<T> FromWorld for Twhere T: Default,
source§fn from_world(_world: &mut World) -> T
 
fn from_world(_world: &mut World) -> T
Creates 
Self using data from the given Worldsource§impl<S> GetField for Swhere
    S: Struct,
 
impl<S> GetField for Swhere S: Struct,
source§impl<T> GetPath for Twhere
    T: Reflect,
 
impl<T> GetPath for Twhere T: Reflect,
source§fn reflect_path<'r, 'p>(
    &'r self,
    path: &'p str
) -> Result<&'r (dyn Reflect + 'static), ReflectPathError<'p>>
 
fn reflect_path<'r, 'p>( &'r self, path: &'p str ) -> Result<&'r (dyn Reflect + 'static), ReflectPathError<'p>>
Returns a reference to the value specified by 
path. Read moresource§fn reflect_path_mut<'r, 'p>(
    &'r mut self,
    path: &'p str
) -> Result<&'r mut (dyn Reflect + 'static), ReflectPathError<'p>>
 
fn reflect_path_mut<'r, 'p>( &'r mut self, path: &'p str ) -> Result<&'r mut (dyn Reflect + 'static), ReflectPathError<'p>>
Returns a mutable reference to the value specified by 
path. Read more