pub(crate) trait DOMRectListMethods<D: DomTypes> {
    // Required methods
    fn Length(&self) -> u32;
    fn Item(&self, index: u32) -> Option<DomRoot<D::DOMRect>>;
    fn IndexedGetter(&self, index: u32) -> Option<DomRoot<D::DOMRect>>;
}

Required Methods§

Source

fn Length(&self) -> u32

Source

fn Item(&self, index: u32) -> Option<DomRoot<D::DOMRect>>

Source

fn IndexedGetter(&self, index: u32) -> Option<DomRoot<D::DOMRect>>

Implementors§