CSSRuleListMethods

pub trait CSSRuleListMethods<D: DomTypes> {
    // Required methods
    fn Item(
        &self,
        cx: &mut JSContext,
        index: u32,
    ) -> Option<DomRoot<D::CSSRule>>;
    fn Length(&self) -> u32;
    fn IndexedGetter(
        &self,
        cx: &mut JSContext,
        index: u32,
    ) -> Option<DomRoot<D::CSSRule>>;
}

Required Methods§

Source

fn Item(&self, cx: &mut JSContext, index: u32) -> Option<DomRoot<D::CSSRule>>

Source

fn Length(&self) -> u32

Source

fn IndexedGetter( &self, cx: &mut JSContext, index: u32, ) -> Option<DomRoot<D::CSSRule>>

Implementors§