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