Enum swc_css_ast::AnglePercentage
source · pub enum AnglePercentage {
Angle(Angle),
Percentage(Percentage),
}
Variants§
Angle(Angle)
Percentage(Percentage)
Implementations§
source§impl AnglePercentage
impl AnglePercentage
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 const fn is_percentage(&self) -> bool
pub const fn is_percentage(&self) -> bool
Returns true
if self
is of variant Percentage
.
sourcepub fn as_percentage(&self) -> Option<&Percentage>
pub fn as_percentage(&self) -> Option<&Percentage>
Returns Some
if self
is a reference of variant Percentage
, and None
otherwise.
sourcepub fn as_mut_percentage(&mut self) -> Option<&mut Percentage>
pub fn as_mut_percentage(&mut self) -> Option<&mut Percentage>
Returns Some
if self
is a mutable reference of variant Percentage
, and None
otherwise.
sourcepub fn expect_percentage(self) -> Percentagewhere
Self: Debug,
pub fn expect_percentage(self) -> Percentagewhere
Self: Debug,
Unwraps the value, yielding the content of Percentage
.
§Panics
Panics if the value is not Percentage
, with a panic message including the content of self
.
sourcepub fn percentage(self) -> Option<Percentage>
pub fn percentage(self) -> Option<Percentage>
Returns Some
if self
is of variant Percentage
, and None
otherwise.
Trait Implementations§
source§impl Clone for AnglePercentage
impl Clone for AnglePercentage
source§fn clone(&self) -> AnglePercentage
fn clone(&self) -> AnglePercentage
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 AnglePercentage
impl Debug for AnglePercentage
source§impl EqIgnoreSpan for AnglePercentage
impl EqIgnoreSpan for AnglePercentage
fn eq_ignore_span(&self, other: &Self) -> bool
source§impl From<Angle> for AnglePercentage
impl From<Angle> for AnglePercentage
source§impl From<Percentage> for AnglePercentage
impl From<Percentage> for AnglePercentage
source§fn from(v: Percentage) -> Self
fn from(v: Percentage) -> Self
Converts to this type from the input type.
source§impl Hash for AnglePercentage
impl Hash for AnglePercentage
source§impl PartialEq for AnglePercentage
impl PartialEq for AnglePercentage
source§fn eq(&self, other: &AnglePercentage) -> bool
fn eq(&self, other: &AnglePercentage) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Spanned for AnglePercentage
impl Spanned for AnglePercentage
impl Eq for AnglePercentage
impl StructuralPartialEq for AnglePercentage
Auto Trait Implementations§
impl Freeze for AnglePercentage
impl RefUnwindSafe for AnglePercentage
impl Send for AnglePercentage
impl Sync for AnglePercentage
impl Unpin for AnglePercentage
impl UnwindSafe for AnglePercentage
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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>
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