#[repr(C)]pub enum CombinedCssPropertyType {
Show 27 variants
BorderRadius = 0,
Overflow = 1,
Margin = 2,
Border = 3,
BorderLeft = 4,
BorderRight = 5,
BorderTop = 6,
BorderBottom = 7,
BorderColor = 8,
BorderStyle = 9,
BorderWidth = 10,
Padding = 11,
BoxShadow = 12,
BackgroundColor = 13,
BackgroundImage = 14,
Background = 15,
Flex = 16,
Grid = 17,
Gap = 18,
GridGap = 19,
Font = 20,
Columns = 21,
ColumnRule = 22,
GridArea = 23,
TextBox = 24,
InsetBlock = 25,
InsetInline = 26,
}Variants§
BorderRadius = 0
Overflow = 1
Margin = 2
Border = 3
BorderLeft = 4
BorderRight = 5
BorderTop = 6
BorderBottom = 7
BorderColor = 8
BorderStyle = 9
BorderWidth = 10
Padding = 11
BoxShadow = 12
BackgroundColor = 13
BackgroundImage = 14
Background = 15
Flex = 16
Grid = 17
Gap = 18
GridGap = 19
Font = 20
Columns = 21
ColumnRule = 22
GridArea = 23
TextBox = 24
InsetBlock = 25
inset-block shorthand: sets inset-block-start + inset-block-end
(maps to top + bottom in horizontal-tb writing mode)
InsetInline = 26
inset-inline shorthand: sets inset-inline-start + inset-inline-end
(maps to left + right in horizontal-tb writing mode)
Implementations§
Trait Implementations§
Source§impl Clone for CombinedCssPropertyType
impl Clone for CombinedCssPropertyType
Source§fn clone(&self) -> CombinedCssPropertyType
fn clone(&self) -> CombinedCssPropertyType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CombinedCssPropertyType
impl Debug for CombinedCssPropertyType
Source§impl Display for CombinedCssPropertyType
impl Display for CombinedCssPropertyType
Source§impl Hash for CombinedCssPropertyType
impl Hash for CombinedCssPropertyType
Source§impl Ord for CombinedCssPropertyType
impl Ord for CombinedCssPropertyType
Source§fn cmp(&self, other: &CombinedCssPropertyType) -> Ordering
fn cmp(&self, other: &CombinedCssPropertyType) -> Ordering
1.21.0 (const: unstable) · 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 PartialEq for CombinedCssPropertyType
impl PartialEq for CombinedCssPropertyType
Source§fn eq(&self, other: &CombinedCssPropertyType) -> bool
fn eq(&self, other: &CombinedCssPropertyType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for CombinedCssPropertyType
impl PartialOrd for CombinedCssPropertyType
impl Copy for CombinedCssPropertyType
impl Eq for CombinedCssPropertyType
impl StructuralPartialEq for CombinedCssPropertyType
Auto Trait Implementations§
impl Freeze for CombinedCssPropertyType
impl RefUnwindSafe for CombinedCssPropertyType
impl Send for CombinedCssPropertyType
impl Sync for CombinedCssPropertyType
impl Unpin for CombinedCssPropertyType
impl UnsafeUnpin for CombinedCssPropertyType
impl UnwindSafe for CombinedCssPropertyType
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