pub trait HTMLVideoElementMethods {
    // Required methods
    fn VideoWidth(&self) -> u32;
    fn VideoHeight(&self) -> u32;
    fn Poster(&self) -> DOMString;
    fn SetPoster(&self, value: DOMString);
    fn GetOnpostershown(&self) -> Option<Rc<EventHandlerNonNull>>;
    fn SetOnpostershown(&self, value: Option<Rc<EventHandlerNonNull>>);
}

Required Methods§

Implementors§