Enum taffy::style::LengthPercentageAuto
source · pub enum LengthPercentageAuto {
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§
Trait Implementations§
source§impl Clone for LengthPercentageAuto
impl Clone for LengthPercentageAuto
source§fn clone(&self) -> LengthPercentageAuto
fn clone(&self) -> LengthPercentageAuto
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 LengthPercentageAuto
impl Debug for LengthPercentageAuto
source§impl From<LengthPercentage> for LengthPercentageAuto
impl From<LengthPercentage> for LengthPercentageAuto
source§fn from(input: LengthPercentage) -> Self
fn from(input: LengthPercentage) -> Self
Converts to this type from the input type.
source§impl From<LengthPercentageAuto> for Dimension
impl From<LengthPercentageAuto> for Dimension
source§fn from(input: LengthPercentageAuto) -> Self
fn from(input: LengthPercentageAuto) -> Self
Converts to this type from the input type.
source§impl FromLength for LengthPercentageAuto
impl FromLength for LengthPercentageAuto
source§impl FromPercent for LengthPercentageAuto
impl FromPercent for LengthPercentageAuto
source§impl PartialEq for LengthPercentageAuto
impl PartialEq for LengthPercentageAuto
source§impl TaffyAuto for LengthPercentageAuto
impl TaffyAuto for LengthPercentageAuto
source§impl TaffyZero for LengthPercentageAuto
impl TaffyZero for LengthPercentageAuto
impl Copy for LengthPercentageAuto
impl StructuralPartialEq for LengthPercentageAuto
Auto Trait Implementations§
impl Freeze for LengthPercentageAuto
impl RefUnwindSafe for LengthPercentageAuto
impl Send for LengthPercentageAuto
impl Sync for LengthPercentageAuto
impl Unpin for LengthPercentageAuto
impl UnwindSafe for LengthPercentageAuto
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
)