pub enum Dimension {
Length(Length),
Angle(Angle),
Time(Time),
Frequency(Frequency),
Resolution(Resolution),
Flex(Flex),
UnknownDimension(UnknownDimension),
}Variants§
Length(Length)
Angle(Angle)
Time(Time)
Frequency(Frequency)
Resolution(Resolution)
Flex(Flex)
UnknownDimension(UnknownDimension)
Implementations§
Source§impl Dimension
impl Dimension
Sourcepub fn as_length(&self) -> Option<&Length>
pub fn as_length(&self) -> Option<&Length>
Returns Some if self is a reference of variant Length, and None otherwise.
Sourcepub fn as_mut_length(&mut self) -> Option<&mut Length>
pub fn as_mut_length(&mut self) -> Option<&mut Length>
Returns Some if self is a mutable reference of variant Length, and None otherwise.
Sourcepub fn expect_length(self) -> Lengthwhere
Self: Debug,
pub fn expect_length(self) -> Lengthwhere
Self: Debug,
Sourcepub fn length(self) -> Option<Length>
pub fn length(self) -> Option<Length>
Returns Some if self is of variant Length, and None otherwise.
Sourcepub fn as_angle(&self) -> Option<&Angle>
pub fn as_angle(&self) -> Option<&Angle>
Returns Some if self is a reference of variant Angle, and None otherwise.
Sourcepub fn as_mut_angle(&mut self) -> Option<&mut Angle>
pub fn as_mut_angle(&mut self) -> Option<&mut Angle>
Returns Some if self is a mutable reference of variant Angle, and None otherwise.
Sourcepub fn expect_angle(self) -> Anglewhere
Self: Debug,
pub fn expect_angle(self) -> Anglewhere
Self: Debug,
Sourcepub fn angle(self) -> Option<Angle>
pub fn angle(self) -> Option<Angle>
Returns Some if self is of variant Angle, and None otherwise.
Sourcepub fn as_time(&self) -> Option<&Time>
pub fn as_time(&self) -> Option<&Time>
Returns Some if self is a reference of variant Time, and None otherwise.
Sourcepub fn as_mut_time(&mut self) -> Option<&mut Time>
pub fn as_mut_time(&mut self) -> Option<&mut Time>
Returns Some if self is a mutable reference of variant Time, and None otherwise.
Sourcepub fn expect_time(self) -> Timewhere
Self: Debug,
pub fn expect_time(self) -> Timewhere
Self: Debug,
Sourcepub const fn is_frequency(&self) -> bool
pub const fn is_frequency(&self) -> bool
Returns true if self is of variant Frequency.
Sourcepub fn as_frequency(&self) -> Option<&Frequency>
pub fn as_frequency(&self) -> Option<&Frequency>
Returns Some if self is a reference of variant Frequency, and None otherwise.
Sourcepub fn as_mut_frequency(&mut self) -> Option<&mut Frequency>
pub fn as_mut_frequency(&mut self) -> Option<&mut Frequency>
Returns Some if self is a mutable reference of variant Frequency, and None otherwise.
Sourcepub fn expect_frequency(self) -> Frequencywhere
Self: Debug,
pub fn expect_frequency(self) -> Frequencywhere
Self: Debug,
Sourcepub fn frequency(self) -> Option<Frequency>
pub fn frequency(self) -> Option<Frequency>
Returns Some if self is of variant Frequency, and None otherwise.
Sourcepub const fn is_resolution(&self) -> bool
pub const fn is_resolution(&self) -> bool
Returns true if self is of variant Resolution.
Sourcepub fn as_resolution(&self) -> Option<&Resolution>
pub fn as_resolution(&self) -> Option<&Resolution>
Returns Some if self is a reference of variant Resolution, and None otherwise.
Sourcepub fn as_mut_resolution(&mut self) -> Option<&mut Resolution>
pub fn as_mut_resolution(&mut self) -> Option<&mut Resolution>
Returns Some if self is a mutable reference of variant Resolution, and None otherwise.
Sourcepub fn expect_resolution(self) -> Resolutionwhere
Self: Debug,
pub fn expect_resolution(self) -> Resolutionwhere
Self: Debug,
Unwraps the value, yielding the content of Resolution.
§Panics
Panics if the value is not Resolution, with a panic message including the content of self.
Sourcepub fn resolution(self) -> Option<Resolution>
pub fn resolution(self) -> Option<Resolution>
Returns Some if self is of variant Resolution, and None otherwise.
Sourcepub fn as_flex(&self) -> Option<&Flex>
pub fn as_flex(&self) -> Option<&Flex>
Returns Some if self is a reference of variant Flex, and None otherwise.
Sourcepub fn as_mut_flex(&mut self) -> Option<&mut Flex>
pub fn as_mut_flex(&mut self) -> Option<&mut Flex>
Returns Some if self is a mutable reference of variant Flex, and None otherwise.
Sourcepub fn expect_flex(self) -> Flexwhere
Self: Debug,
pub fn expect_flex(self) -> Flexwhere
Self: Debug,
Sourcepub const fn is_unknown_dimension(&self) -> bool
pub const fn is_unknown_dimension(&self) -> bool
Returns true if self is of variant UnknownDimension.
Sourcepub fn as_unknown_dimension(&self) -> Option<&UnknownDimension>
pub fn as_unknown_dimension(&self) -> Option<&UnknownDimension>
Returns Some if self is a reference of variant UnknownDimension, and None otherwise.
Sourcepub fn as_mut_unknown_dimension(&mut self) -> Option<&mut UnknownDimension>
pub fn as_mut_unknown_dimension(&mut self) -> Option<&mut UnknownDimension>
Returns Some if self is a mutable reference of variant UnknownDimension, and None otherwise.
Sourcepub fn expect_unknown_dimension(self) -> UnknownDimensionwhere
Self: Debug,
pub fn expect_unknown_dimension(self) -> UnknownDimensionwhere
Self: Debug,
Unwraps the value, yielding the content of UnknownDimension.
§Panics
Panics if the value is not UnknownDimension, with a panic message including the content of self.
Sourcepub fn unknown_dimension(self) -> Option<UnknownDimension>
pub fn unknown_dimension(self) -> Option<UnknownDimension>
Returns Some if self is of variant UnknownDimension, and None otherwise.
Trait Implementations§
Source§impl EqIgnoreSpan for Dimension
impl EqIgnoreSpan for Dimension
fn eq_ignore_span(&self, other: &Self) -> bool
Source§impl From<Dimension> for MediaFeatureValue
impl From<Dimension> for MediaFeatureValue
Source§impl From<Dimension> for SizeFeatureValue
impl From<Dimension> for SizeFeatureValue
Source§impl From<Resolution> for Dimension
impl From<Resolution> for Dimension
Source§fn from(v: Resolution) -> Self
fn from(v: Resolution) -> Self
Source§impl From<UnknownDimension> for Dimension
impl From<UnknownDimension> for Dimension
Source§fn from(v: UnknownDimension) -> Self
fn from(v: UnknownDimension) -> Self
impl Eq 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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