Enum lay_rs::prelude::taffy::AvailableSpace
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§
§impl AvailableSpace
impl AvailableSpace
pub fn is_definite(self) -> bool
pub fn is_definite(self) -> bool
Returns true for definite values, else false
pub fn into_option(self) -> Option<f32>
pub fn into_option(self) -> Option<f32>
Convert to Option Definite values become Some(value). Constraints become None.
pub fn or(self, default: AvailableSpace) -> AvailableSpace
pub fn or(self, default: AvailableSpace) -> AvailableSpace
Return self if definite or a default value
pub 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
pub 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
pub 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
pub 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
pub 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
pub 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§
§impl Clone for AvailableSpace
impl Clone for AvailableSpace
§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 more§impl Debug for AvailableSpace
impl Debug for AvailableSpace
§impl From<Option<f32>> for AvailableSpace
impl From<Option<f32>> for AvailableSpace
§fn from(option: Option<f32>) -> AvailableSpace
fn from(option: Option<f32>) -> AvailableSpace
§impl From<f32> for AvailableSpace
impl From<f32> for AvailableSpace
§fn from(value: f32) -> AvailableSpace
fn from(value: f32) -> AvailableSpace
§impl FromLength for AvailableSpace
impl FromLength for AvailableSpace
§fn from_length<Input>(value: Input) -> AvailableSpace
fn from_length<Input>(value: Input) -> AvailableSpace
Into<f32>
into Self§impl MaybeMath<Option<f32>, AvailableSpace> for AvailableSpace
impl MaybeMath<Option<f32>, AvailableSpace> for AvailableSpace
§fn maybe_min(self, rhs: Option<f32>) -> AvailableSpace
fn maybe_min(self, rhs: Option<f32>) -> AvailableSpace
self
and rhs
§fn maybe_max(self, rhs: Option<f32>) -> AvailableSpace
fn maybe_max(self, rhs: Option<f32>) -> AvailableSpace
self
and rhs
§fn maybe_clamp(self, min: Option<f32>, max: Option<f32>) -> AvailableSpace
fn maybe_clamp(self, min: Option<f32>, max: Option<f32>) -> AvailableSpace
self
clamped between min
and max
§fn maybe_add(self, rhs: Option<f32>) -> AvailableSpace
fn maybe_add(self, rhs: Option<f32>) -> AvailableSpace
self
and rhs
.§impl MaybeMath<f32, AvailableSpace> for AvailableSpace
impl MaybeMath<f32, AvailableSpace> for AvailableSpace
§fn maybe_min(self, rhs: f32) -> AvailableSpace
fn maybe_min(self, rhs: f32) -> AvailableSpace
self
and rhs
§fn maybe_max(self, rhs: f32) -> AvailableSpace
fn maybe_max(self, rhs: f32) -> AvailableSpace
self
and rhs
§fn maybe_clamp(self, min: f32, max: f32) -> AvailableSpace
fn maybe_clamp(self, min: f32, max: f32) -> AvailableSpace
self
clamped between min
and max
§fn maybe_add(self, rhs: f32) -> AvailableSpace
fn maybe_add(self, rhs: f32) -> AvailableSpace
self
and rhs
.§fn maybe_sub(self, rhs: f32) -> AvailableSpace
fn maybe_sub(self, rhs: f32) -> AvailableSpace
self
, treating None
values as default§impl PartialEq for AvailableSpace
impl PartialEq for AvailableSpace
§impl TaffyMaxContent for AvailableSpace
impl TaffyMaxContent for AvailableSpace
§const MAX_CONTENT: AvailableSpace = Self::MaxContent
const MAX_CONTENT: AvailableSpace = Self::MaxContent
§impl TaffyMinContent for AvailableSpace
impl TaffyMinContent for AvailableSpace
§const MIN_CONTENT: AvailableSpace = Self::MinContent
const MIN_CONTENT: AvailableSpace = Self::MinContent
§impl TaffyZero for AvailableSpace
impl TaffyZero for AvailableSpace
§const ZERO: AvailableSpace = _
const ZERO: AvailableSpace = _
impl Copy for AvailableSpace
impl StructuralPartialEq for AvailableSpace
Auto Trait Implementations§
impl Freeze for AvailableSpace
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> 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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more