Enum lay_rs::prelude::taffy::style::LengthPercentage
pub enum LengthPercentage {
Length(f32),
Percent(f32),
}
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.
Trait Implementations§
§impl Clone for LengthPercentage
impl Clone for LengthPercentage
§fn clone(&self) -> LengthPercentage
fn clone(&self) -> LengthPercentage
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 more§impl Debug for LengthPercentage
impl Debug for LengthPercentage
§impl<'de> Deserialize<'de> for LengthPercentage
impl<'de> Deserialize<'de> for LengthPercentage
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LengthPercentage, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LengthPercentage, <__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<LengthPercentage> for LengthPercentageAuto
impl From<LengthPercentage> for LengthPercentageAuto
§fn from(input: LengthPercentage) -> LengthPercentageAuto
fn from(input: LengthPercentage) -> LengthPercentageAuto
Converts to this type from the input type.
§impl FromLength for LengthPercentage
impl FromLength for LengthPercentage
§fn from_length<Input>(value: Input) -> LengthPercentage
fn from_length<Input>(value: Input) -> LengthPercentage
Converts into an
Into<f32>
into Self§impl FromPercent for LengthPercentage
impl FromPercent for LengthPercentage
§fn from_percent<Input>(percent: Input) -> LengthPercentage
fn from_percent<Input>(percent: Input) -> LengthPercentage
Converts into an
Into<f32>
into Self§impl MaybeResolve<Option<f32>, Option<f32>> for LengthPercentage
impl MaybeResolve<Option<f32>, Option<f32>> for LengthPercentage
§fn maybe_resolve(self, context: Option<f32>) -> Option<f32>
fn maybe_resolve(self, context: Option<f32>) -> Option<f32>
Converts the given LengthPercentage
into an absolute length
Can return None
§impl PartialEq for LengthPercentage
impl PartialEq for LengthPercentage
§impl ResolveOrZero<Option<f32>, f32> for LengthPercentage
impl ResolveOrZero<Option<f32>, f32> for LengthPercentage
§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 LengthPercentage
impl Serialize for LengthPercentage
§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 TaffyZero for LengthPercentage
impl TaffyZero for LengthPercentage
§const ZERO: LengthPercentage = _
const ZERO: LengthPercentage = _
The zero value for type implementing TaffyZero
impl Copy for LengthPercentage
impl StructuralPartialEq for LengthPercentage
Auto Trait Implementations§
impl Freeze for LengthPercentage
impl RefUnwindSafe for LengthPercentage
impl Send for LengthPercentage
impl Sync for LengthPercentage
impl Unpin for LengthPercentage
impl UnwindSafe for LengthPercentage
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