pub(crate) trait TextTrackCueListMethods<D>where
D: DomTypes,{
// Required methods
fn Length(&self) -> u32;
fn GetCueById(
&self,
id: DOMString,
) -> Option<Root<Dom<<D as DomTypes>::TextTrackCue>>>;
fn IndexedGetter(
&self,
index: u32,
) -> Option<Root<Dom<<D as DomTypes>::TextTrackCue>>>;
}