pub struct CssAttributes { /* private fields */ }
Expand description
A css property is used to remove duplicates.
In principle, each css property will only appear once, and the one set later will override the previous one.
Implementations§
Source§impl CssAttributes
impl CssAttributes
Trait Implementations§
Source§impl Add for CssAttributes
impl Add for CssAttributes
Source§impl AddAssign for CssAttributes
impl AddAssign for CssAttributes
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+=
operation. Read moreSource§impl Clone for CssAttributes
impl Clone for CssAttributes
Source§fn clone(&self) -> CssAttributes
fn clone(&self) -> CssAttributes
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 CssAttributes
impl Debug for CssAttributes
Source§impl Default for CssAttributes
impl Default for CssAttributes
Source§fn default() -> CssAttributes
fn default() -> CssAttributes
Returns the “default value” for a type. Read more
Source§impl Display for CssAttributes
impl Display for CssAttributes
Source§impl Hash for CssAttributes
impl Hash for CssAttributes
Source§impl Ord for CssAttributes
impl Ord for CssAttributes
Source§fn cmp(&self, other: &CssAttributes) -> Ordering
fn cmp(&self, other: &CssAttributes) -> 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 PartialEq for CssAttributes
impl PartialEq for CssAttributes
Source§impl PartialOrd for CssAttributes
impl PartialOrd for CssAttributes
impl Eq for CssAttributes
impl StructuralPartialEq for CssAttributes
Auto Trait Implementations§
impl Freeze for CssAttributes
impl RefUnwindSafe for CssAttributes
impl Send for CssAttributes
impl Sync for CssAttributes
impl Unpin for CssAttributes
impl UnwindSafe for CssAttributes
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§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