pub enum Dimension {
Length(f32),
Percent(f32),
Auto,
}
Expand description
Variants§
Length(f32)
An absolute length in some abstract units. Users of Taffy may define what they correspond to in their application (pixels, logical pixels, mm, etc) as they see fit.
Percent(f32)
The dimension is stored in percentage relative to the parent item.
Auto
The dimension should be automatically computed
Implementations§
§impl Dimension
impl Dimension
pub fn into_option(self) -> Option<f32>
pub fn into_option(self) -> Option<f32>
Get Length value if value is Length variant
Trait Implementations§
§impl<'de> Deserialize<'de> for Dimension
impl<'de> Deserialize<'de> for Dimension
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Dimension, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Dimension, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl From<LengthPercentage> for Dimension
impl From<LengthPercentage> for Dimension
§fn from(input: LengthPercentage) -> Dimension
fn from(input: LengthPercentage) -> Dimension
Converts to this type from the input type.
§impl From<LengthPercentageAuto> for Dimension
impl From<LengthPercentageAuto> for Dimension
§fn from(input: LengthPercentageAuto) -> Dimension
fn from(input: LengthPercentageAuto) -> Dimension
Converts to this type from the input type.
§impl FromLength for Dimension
impl FromLength for Dimension
§impl FromPercent for Dimension
impl FromPercent for Dimension
source§impl Interpolate for Dimension
impl Interpolate for Dimension
§impl ResolveOrZero<Option<f32>, f32> for Dimension
impl ResolveOrZero<Option<f32>, f32> for Dimension
§fn resolve_or_zero(self, context: Option<f32>) -> f32
fn resolve_or_zero(self, context: Option<f32>) -> f32
Will return a default value of result is evaluated to None
§impl Serialize for Dimension
impl Serialize for Dimension
§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for Dimension
impl StructuralPartialEq for Dimension
Auto Trait Implementations§
impl Freeze for Dimension
impl RefUnwindSafe for Dimension
impl Send for Dimension
impl Sync for Dimension
impl Unpin for Dimension
impl UnwindSafe for Dimension
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
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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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§impl<T> MaybeResolve<f32, Option<f32>> for T
impl<T> MaybeResolve<f32, Option<f32>> for T
§fn maybe_resolve(self, context: f32) -> Option<f32>
fn maybe_resolve(self, context: f32) -> Option<f32>
Converts the given MaybeResolve value into an absolute length
Can return None