pub enum PropertyId {
    NonCustom(NonCustomPropertyId),
    Custom(Name),
}
Expand description

Representation of a CSS property, that is, either a longhand, a shorthand, or a custom property.

Variants§

§

NonCustom(NonCustomPropertyId)

An alias for a shorthand property.

§

Custom(Name)

A custom property.

Implementations§

source§

impl PropertyId

source

pub(super) fn parse_unchecked( property_name: &str, use_counters: Option<&UseCounters> ) -> Result<Self, ()>

Returns a given property from the given name, regardless of whether it is enabled or not, or Err(()) for unknown properties.

source§

impl PropertyId

source

pub fn longhand_id(&self) -> Option<LonghandId>

Return the longhand id that this property id represents.

source

pub fn is_animatable(&self) -> bool

Returns true if this property is one of the animatable properties.

source

pub fn is_transitionable(&self) -> bool

Returns true if this property is one of the transitionable properties.

source

pub fn parse_unchecked_for_testing(name: &str) -> Result<Self, ()>

Returns a given property from the given name, regardless of whether it is enabled or not, or Err(()) for unknown properties.

Do not use for non-testing purposes.

source

pub fn parse_enabled_for_all_content(name: &str) -> Result<Self, ()>

Parses a property name, and returns an error if it’s unknown or isn’t enabled for all content.

source

pub fn parse(name: &str, context: &ParserContext<'_>) -> Result<Self, ()>

Parses a property name, and returns an error if it’s unknown or isn’t allowed in this context.

source

pub fn parse_ignoring_rule_type( name: &str, context: &ParserContext<'_> ) -> Result<Self, ()>

Parses a property name, and returns an error if it’s unknown or isn’t allowed in this context, ignoring the rule_type checks.

This is useful for parsing stuff from CSS values, for example.

source

pub fn is_shorthand(&self) -> bool

Returns true if the property is a shorthand or shorthand alias.

source

pub fn as_shorthand(&self) -> Result<ShorthandId, PropertyDeclarationId<'_>>

Given this property id, get it either as a shorthand or as a PropertyDeclarationId.

source

pub fn non_custom_id(&self) -> Option<NonCustomPropertyId>

Returns the NonCustomPropertyId corresponding to this property id.

source

fn non_custom_non_alias_id(&self) -> Option<NonCustomPropertyId>

Returns non-alias NonCustomPropertyId corresponding to this property id.

source

pub fn enabled_for_all_content(&self) -> bool

Whether the property is enabled for all content regardless of the stylesheet it was declared on (that is, in practice only checks prefs).

source

fn allowed_in(&self, context: &ParserContext<'_>) -> bool

source

fn allowed_in_ignoring_rule_type(&self, context: &ParserContext<'_>) -> bool

source

pub fn supports_type(&self, ty: u8) -> bool

Whether the property supports the given CSS type. ty should a bitflags of constants in style_traits::CssType.

source

pub fn collect_property_completion_keywords(&self, f: KeywordsCollectFn<'_>)

Collect supported starting word of values of this property.

See style_traits::SpecifiedValueInfo::collect_completion_keywords for more details.

Trait Implementations§

source§

impl Clone for PropertyId

source§

fn clone(&self) -> PropertyId

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for PropertyId

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<PropertyId> for PropertyId

source§

fn eq(&self, other: &PropertyId) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl ToCss for PropertyId

source§

fn to_css<W>(&self, dest: &mut CssWriter<'_, W>) -> Resultwhere W: Write,

Serialize self in CSS syntax, writing to dest.
source§

fn to_css_string(&self) -> String

Serialize self in CSS syntax and return a string. Read more
source§

impl Eq for PropertyId

source§

impl StructuralEq for PropertyId

source§

impl StructuralPartialEq for PropertyId

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>where F: FnOnce(&Self) -> bool,

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
source§

impl<T> MaybeBoxed<Box<T, Global>> for T

source§

fn maybe_boxed(self) -> Box<T, Global>

Convert
source§

impl<T> MaybeBoxed<T> for T

source§

fn maybe_boxed(self) -> T

Convert
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Erased for T

source§

impl<T> ErasedDestructor for Twhere T: 'static,

source§

impl<T> MaybeSendSync for T