Enum bevy_internal::ui::AvailableSpace
source · pub enum AvailableSpace {
Definite(f32),
MinContent,
MaxContent,
}
Expand description
The amount of space available to a node in a given axis https://www.w3.org/TR/css-sizing-3/#available
Variants§
Definite(f32)
The amount of space available is the specified number of pixels
MinContent
The amount of space available is indefinite and the node should be laid out under a min-content constraint
MaxContent
The amount of space available is indefinite and the node should be laid out under a max-content constraint
Implementations§
source§impl AvailableSpace
impl AvailableSpace
sourcepub fn is_definite(self) -> bool
pub fn is_definite(self) -> bool
Returns true for definite values, else false
sourcepub fn into_option(self) -> Option<f32>
pub fn into_option(self) -> Option<f32>
Convert to Option Definite values become Some(value). Contraints become None.
sourcepub fn or(self, default: AvailableSpace) -> AvailableSpace
pub fn or(self, default: AvailableSpace) -> AvailableSpace
Return self if definite or a default value
sourcepub fn or_else(
self,
default_cb: impl FnOnce() -> AvailableSpace
) -> AvailableSpace
pub fn or_else( self, default_cb: impl FnOnce() -> AvailableSpace ) -> AvailableSpace
Return self if definite or a the result of the default value callback
sourcepub fn unwrap_or_else(self, default_cb: impl FnOnce() -> f32) -> f32
pub fn unwrap_or_else(self, default_cb: impl FnOnce() -> f32) -> f32
Return the definite value or the result of the default value callback
sourcepub fn maybe_set(self, value: Option<f32>) -> AvailableSpace
pub fn maybe_set(self, value: Option<f32>) -> AvailableSpace
If passed value is Some then return AvailableSpace::Definite containing that value, else return self
sourcepub fn map_definite_value(
self,
map_function: impl FnOnce(f32) -> f32
) -> AvailableSpace
pub fn map_definite_value( self, map_function: impl FnOnce(f32) -> f32 ) -> AvailableSpace
If passed value is Some then return AvailableSpace::Definite containing that value, else return self
sourcepub fn compute_free_space(&self, used_space: f32) -> f32
pub fn compute_free_space(&self, used_space: f32) -> f32
Compute free_space given the passed used_space
sourcepub fn is_roughly_equal(self, other: AvailableSpace) -> bool
pub fn is_roughly_equal(self, other: AvailableSpace) -> bool
Compare equality with another AvailableSpace, treating definite values that are within f32::EPSILON of each other as equal
Trait Implementations§
source§impl Clone for AvailableSpace
impl Clone for AvailableSpace
source§fn clone(&self) -> AvailableSpace
fn clone(&self) -> AvailableSpace
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AvailableSpace
impl Debug for AvailableSpace
source§impl From<f32> for AvailableSpace
impl From<f32> for AvailableSpace
source§fn from(value: f32) -> AvailableSpace
fn from(value: f32) -> AvailableSpace
source§impl FromPoints for AvailableSpace
impl FromPoints for AvailableSpace
source§fn from_points<Input>(points: Input) -> AvailableSpace
fn from_points<Input>(points: Input) -> AvailableSpace
Into<f32>
into Selfsource§impl PartialEq for AvailableSpace
impl PartialEq for AvailableSpace
source§fn eq(&self, other: &AvailableSpace) -> bool
fn eq(&self, other: &AvailableSpace) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl TaffyMaxContent for AvailableSpace
impl TaffyMaxContent for AvailableSpace
source§const MAX_CONTENT: AvailableSpace = Self::MaxContent
const MAX_CONTENT: AvailableSpace = Self::MaxContent
source§impl TaffyMinContent for AvailableSpace
impl TaffyMinContent for AvailableSpace
source§const MIN_CONTENT: AvailableSpace = Self::MinContent
const MIN_CONTENT: AvailableSpace = Self::MinContent
source§impl TaffyZero for AvailableSpace
impl TaffyZero for AvailableSpace
source§const ZERO: AvailableSpace = _
const ZERO: AvailableSpace = _
impl Copy for AvailableSpace
impl StructuralPartialEq for AvailableSpace
Auto Trait Implementations§
impl RefUnwindSafe for AvailableSpace
impl Send for AvailableSpace
impl Sync for AvailableSpace
impl Unpin for AvailableSpace
impl UnwindSafe for AvailableSpace
Blanket Implementations§
source§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
source§fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
T
ShaderType
for self
. When used in AsBindGroup
derives, it is safe to assume that all images in self
exist.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
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
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
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.