pub trait CSSPropertyRuleMethods<D: DomTypes> {
// Required methods
fn Name(&self) -> DOMString;
fn Syntax(&self) -> DOMString;
fn Inherits(&self) -> bool;
fn GetInitialValue(&self) -> Option<DOMString>;
}Required Methods§
fn Name(&self) -> DOMString
fn Syntax(&self) -> DOMString
fn Inherits(&self) -> bool
fn GetInitialValue(&self) -> Option<DOMString>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".