#[repr(C, u8)]pub enum GenericTrackListValue<LengthPercentage, Integer> {
TrackSize(GenericTrackSize<LengthPercentage>),
TrackRepeat(GenericTrackRepeat<LengthPercentage, Integer>),
}
Expand description
Track list values. Can be
Variants§
TrackSize(GenericTrackSize<LengthPercentage>)
A
TrackRepeat(GenericTrackRepeat<LengthPercentage, Integer>)
A
Implementations§
source§impl<L, I> TrackListValue<L, I>
impl<L, I> TrackListValue<L, I>
const INITIAL_VALUE: Self = _
fn is_repeat(&self) -> bool
sourcepub fn is_initial(&self) -> bool
pub fn is_initial(&self) -> bool
Returns true if self
is the initial value.
Trait Implementations§
source§impl<LengthPercentage, Integer> Animate for GenericTrackListValue<LengthPercentage, Integer>where
LengthPercentage: Animate,
Integer: Animate,
GenericTrackSize<LengthPercentage>: Animate,
GenericTrackRepeat<LengthPercentage, Integer>: Animate,
impl<LengthPercentage, Integer> Animate for GenericTrackListValue<LengthPercentage, Integer>where
LengthPercentage: Animate,
Integer: Animate,
GenericTrackSize<LengthPercentage>: Animate,
GenericTrackRepeat<LengthPercentage, Integer>: Animate,
source§impl<LengthPercentage: Clone, Integer: Clone> Clone for GenericTrackListValue<LengthPercentage, Integer>
impl<LengthPercentage: Clone, Integer: Clone> Clone for GenericTrackListValue<LengthPercentage, Integer>
source§fn clone(&self) -> GenericTrackListValue<LengthPercentage, Integer>
fn clone(&self) -> GenericTrackListValue<LengthPercentage, Integer>
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<LengthPercentage: Debug, Integer: Debug> Debug for GenericTrackListValue<LengthPercentage, Integer>
impl<LengthPercentage: Debug, Integer: Debug> Debug for GenericTrackListValue<LengthPercentage, Integer>
source§impl<L, I> Default for TrackListValue<L, I>
impl<L, I> Default for TrackListValue<L, I>
source§impl<LengthPercentage, Integer> MallocSizeOf for GenericTrackListValue<LengthPercentage, Integer>where
LengthPercentage: MallocSizeOf,
Integer: MallocSizeOf,
impl<LengthPercentage, Integer> MallocSizeOf for GenericTrackListValue<LengthPercentage, Integer>where
LengthPercentage: MallocSizeOf,
Integer: MallocSizeOf,
source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
Measure the heap usage of all descendant heap-allocated structures, but
not the space taken up by the value itself.
source§impl<LengthPercentage: PartialEq, Integer: PartialEq> PartialEq for GenericTrackListValue<LengthPercentage, Integer>
impl<LengthPercentage: PartialEq, Integer: PartialEq> PartialEq for GenericTrackListValue<LengthPercentage, Integer>
source§fn eq(&self, other: &GenericTrackListValue<LengthPercentage, Integer>) -> bool
fn eq(&self, other: &GenericTrackListValue<LengthPercentage, Integer>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<LengthPercentage, Integer> SpecifiedValueInfo for GenericTrackListValue<LengthPercentage, Integer>where
LengthPercentage: SpecifiedValueInfo,
Integer: SpecifiedValueInfo,
impl<LengthPercentage, Integer> SpecifiedValueInfo for GenericTrackListValue<LengthPercentage, Integer>where
LengthPercentage: SpecifiedValueInfo,
Integer: SpecifiedValueInfo,
source§const SUPPORTED_TYPES: u8 = _
const SUPPORTED_TYPES: u8 = _
Supported CssTypes by the given value type. Read more
source§impl<LengthPercentage, Integer> ToAnimatedValue for GenericTrackListValue<LengthPercentage, Integer>where
LengthPercentage: ToAnimatedValue,
Integer: ToAnimatedValue,
impl<LengthPercentage, Integer> ToAnimatedValue for GenericTrackListValue<LengthPercentage, Integer>where
LengthPercentage: ToAnimatedValue,
Integer: ToAnimatedValue,
§type AnimatedValue = GenericTrackListValue<<LengthPercentage as ToAnimatedValue>::AnimatedValue, <Integer as ToAnimatedValue>::AnimatedValue>
type AnimatedValue = GenericTrackListValue<<LengthPercentage as ToAnimatedValue>::AnimatedValue, <Integer as ToAnimatedValue>::AnimatedValue>
The type of the animated value.
source§fn from_animated_value(from: Self::AnimatedValue) -> Self
fn from_animated_value(from: Self::AnimatedValue) -> Self
Converts back an animated value into a computed value.
source§fn to_animated_value(self, context: &Context<'_>) -> Self::AnimatedValue
fn to_animated_value(self, context: &Context<'_>) -> Self::AnimatedValue
Converts this value to an animated value.
source§impl<LengthPercentage, Integer> ToComputedValue for GenericTrackListValue<LengthPercentage, Integer>where
LengthPercentage: ToComputedValue,
Integer: ToComputedValue,
impl<LengthPercentage, Integer> ToComputedValue for GenericTrackListValue<LengthPercentage, Integer>where
LengthPercentage: ToComputedValue,
Integer: ToComputedValue,
§type ComputedValue = GenericTrackListValue<<LengthPercentage as ToComputedValue>::ComputedValue, <Integer as ToComputedValue>::ComputedValue>
type ComputedValue = GenericTrackListValue<<LengthPercentage as ToComputedValue>::ComputedValue, <Integer as ToComputedValue>::ComputedValue>
The computed value type we’re going to be converted to.
source§fn from_computed_value(from: &Self::ComputedValue) -> Self
fn from_computed_value(from: &Self::ComputedValue) -> Self
Convert a computed value to specified value form. Read more
source§fn to_computed_value(&self, context: &Context<'_>) -> Self::ComputedValue
fn to_computed_value(&self, context: &Context<'_>) -> Self::ComputedValue
Convert a specified value to a computed value, using itself and the data
inside the
Context
.source§impl<LengthPercentage, Integer> ToCss for GenericTrackListValue<LengthPercentage, Integer>
impl<LengthPercentage, Integer> ToCss for GenericTrackListValue<LengthPercentage, Integer>
source§impl<LengthPercentage, Integer> ToResolvedValue for GenericTrackListValue<LengthPercentage, Integer>where
LengthPercentage: ToResolvedValue,
Integer: ToResolvedValue,
impl<LengthPercentage, Integer> ToResolvedValue for GenericTrackListValue<LengthPercentage, Integer>where
LengthPercentage: ToResolvedValue,
Integer: ToResolvedValue,
§type ResolvedValue = GenericTrackListValue<<LengthPercentage as ToResolvedValue>::ResolvedValue, <Integer as ToResolvedValue>::ResolvedValue>
type ResolvedValue = GenericTrackListValue<<LengthPercentage as ToResolvedValue>::ResolvedValue, <Integer as ToResolvedValue>::ResolvedValue>
The resolved value type we’re going to be converted to.
source§fn from_resolved_value(from: Self::ResolvedValue) -> Self
fn from_resolved_value(from: Self::ResolvedValue) -> Self
Convert a resolved value to resolved value form.
source§fn to_resolved_value(self, context: &Context<'_>) -> Self::ResolvedValue
fn to_resolved_value(self, context: &Context<'_>) -> Self::ResolvedValue
Convert a resolved value to a resolved value.
source§impl<LengthPercentage, Integer> ToShmem for GenericTrackListValue<LengthPercentage, Integer>
impl<LengthPercentage, Integer> ToShmem for GenericTrackListValue<LengthPercentage, Integer>
impl<LengthPercentage, Integer> StructuralPartialEq for GenericTrackListValue<LengthPercentage, Integer>
Auto Trait Implementations§
impl<LengthPercentage, Integer> Freeze for GenericTrackListValue<LengthPercentage, Integer>
impl<LengthPercentage, Integer> RefUnwindSafe for GenericTrackListValue<LengthPercentage, Integer>where
LengthPercentage: RefUnwindSafe,
Integer: RefUnwindSafe,
impl<LengthPercentage, Integer> Send for GenericTrackListValue<LengthPercentage, Integer>
impl<LengthPercentage, Integer> Sync for GenericTrackListValue<LengthPercentage, Integer>
impl<LengthPercentage, Integer> Unpin for GenericTrackListValue<LengthPercentage, Integer>
impl<LengthPercentage, Integer> UnwindSafe for GenericTrackListValue<LengthPercentage, Integer>
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> 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 moresource§impl<T> MaybeBoxed<Box<T>> for T
impl<T> MaybeBoxed<Box<T>> for T
source§fn maybe_boxed(self) -> Box<T>
fn maybe_boxed(self) -> Box<T>
Convert
source§impl<T> MaybeBoxed<T> for T
impl<T> MaybeBoxed<T> for T
source§fn maybe_boxed(self) -> T
fn maybe_boxed(self) -> T
Convert