Trait css::domain::HasPropertyDeclarations [] [src]

pub trait HasPropertyDeclarations<I: HasImportance> {
    fn property_declarations(&self) -> &PropertyDeclarations<I>;
fn property_declarations_mut(&mut self) -> &mut PropertyDeclarations<I>;
fn property_declarations_slice(&self) -> &[PropertyDeclaration<I>];
fn property_declarations_vec(&self) -> &Vec<PropertyDeclaration<I>>;
fn property_declarations_vec_mut(
        &mut self
    ) -> &mut Vec<PropertyDeclaration<I>>; }

Required Methods

Implementors