pub struct CSSDeclaration {
pub property: String,
pub value: String,
pub important: bool,
pub position: Option<SourcePosition>,
}Expand description
CSS declaration (property-value pair)
Fields§
§property: StringCSS property name
value: StringCSS property value
important: boolWhether the declaration is marked as !important
position: Option<SourcePosition>Source position
Implementations§
Source§impl CSSDeclaration
impl CSSDeclaration
Sourcepub fn new_important(property: String, value: String) -> Self
pub fn new_important(property: String, value: String) -> Self
Create a new important declaration
Sourcepub fn set_important(&mut self)
pub fn set_important(&mut self)
Set the declaration as important
Sourcepub fn is_important(&self) -> bool
pub fn is_important(&self) -> bool
Check if declaration is important
Trait Implementations§
Source§impl Clone for CSSDeclaration
impl Clone for CSSDeclaration
Source§fn clone(&self) -> CSSDeclaration
fn clone(&self) -> CSSDeclaration
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 CSSDeclaration
impl Debug for CSSDeclaration
Source§impl<'de> Deserialize<'de> for CSSDeclaration
impl<'de> Deserialize<'de> for CSSDeclaration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CSSDeclaration
impl PartialEq for CSSDeclaration
Source§impl Serialize for CSSDeclaration
impl Serialize for CSSDeclaration
impl StructuralPartialEq for CSSDeclaration
Auto Trait Implementations§
impl Freeze for CSSDeclaration
impl RefUnwindSafe for CSSDeclaration
impl Send for CSSDeclaration
impl Sync for CSSDeclaration
impl Unpin for CSSDeclaration
impl UnwindSafe for CSSDeclaration
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