style::properties

Enum PropertyId

Source
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 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 for PropertyId

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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>) -> Result
where 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 StructuralPartialEq for PropertyId

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where 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 Q
where 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 T
where 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>> for T

Source§

fn maybe_boxed(self) -> Box<T>

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.
Source§

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> ToOwned for T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T