pub trait SubmitEventMethods {
    // Required methods
    fn GetSubmitter(&self) -> Option<Root<Dom<HTMLElement>>>;
    fn IsTrusted(&self) -> bool;
    fn Constructor(
        global: &Window,
        proto: Option<HandleObject<'_>>,
        can_gc: CanGc,
        typeArg: DOMString,
        eventInitDict: &SubmitEventInit,
    ) -> Root<Dom<SubmitEvent>>;
}

Required Methods§

source

fn GetSubmitter(&self) -> Option<Root<Dom<HTMLElement>>>

source

fn IsTrusted(&self) -> bool

source

fn Constructor( global: &Window, proto: Option<HandleObject<'_>>, can_gc: CanGc, typeArg: DOMString, eventInitDict: &SubmitEventInit, ) -> Root<Dom<SubmitEvent>>

Object Safety§

This trait is not object safe.

Implementors§