pub enum BackfaceVisibilityStyleValue {
Visible(Ident),
Hidden(Ident),
}Expand description
Represents the style value for backface-visibility as defined in css-transforms-2.
The transform CSS property and its 3D transform functions allow rotations and other transforms in three dimensions, including perspective transforms.
The grammar is defined as:
visible | hiddenVariants§
Trait Implementations§
Source§impl Clone for BackfaceVisibilityStyleValue
impl Clone for BackfaceVisibilityStyleValue
Source§fn clone(&self) -> BackfaceVisibilityStyleValue
fn clone(&self) -> BackfaceVisibilityStyleValue
Returns a duplicate 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 BackfaceVisibilityStyleValue
impl Debug for BackfaceVisibilityStyleValue
Source§impl Hash for BackfaceVisibilityStyleValue
impl Hash for BackfaceVisibilityStyleValue
Source§impl Ord for BackfaceVisibilityStyleValue
impl Ord for BackfaceVisibilityStyleValue
Source§fn cmp(&self, other: &BackfaceVisibilityStyleValue) -> Ordering
fn cmp(&self, other: &BackfaceVisibilityStyleValue) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> Parse<'a> for BackfaceVisibilityStyleValue
impl<'a> Parse<'a> for BackfaceVisibilityStyleValue
Source§impl PartialEq for BackfaceVisibilityStyleValue
impl PartialEq for BackfaceVisibilityStyleValue
Source§fn eq(&self, other: &BackfaceVisibilityStyleValue) -> bool
fn eq(&self, other: &BackfaceVisibilityStyleValue) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for BackfaceVisibilityStyleValue
impl PartialOrd for BackfaceVisibilityStyleValue
Source§impl<'a> Peek<'a> for BackfaceVisibilityStyleValue
impl<'a> Peek<'a> for BackfaceVisibilityStyleValue
Source§impl ToCursors for BackfaceVisibilityStyleValue
impl ToCursors for BackfaceVisibilityStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for BackfaceVisibilityStyleValue
impl StructuralPartialEq for BackfaceVisibilityStyleValue
Auto Trait Implementations§
impl Freeze for BackfaceVisibilityStyleValue
impl RefUnwindSafe for BackfaceVisibilityStyleValue
impl Send for BackfaceVisibilityStyleValue
impl Sync for BackfaceVisibilityStyleValue
impl Unpin for BackfaceVisibilityStyleValue
impl UnwindSafe for BackfaceVisibilityStyleValue
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