script::dom::bindings::codegen::Bindings::UIEventBinding

Type Alias UIEventInit

Source
pub(crate) type UIEventInit = UIEventInit<DomTypeHolder>;

Aliased Type§

struct UIEventInit {
    pub(crate) parent: EventInit,
    pub(crate) detail: i32,
    pub(crate) view: Option<Root<Dom<Window>>>,
}

Fields§

§parent: EventInit§detail: i32§view: Option<Root<Dom<Window>>>

Implementations

Source§

impl<D: DomTypes> UIEventInit<D>

Source

pub(crate) unsafe fn to_jsobject( &self, cx: *mut JSContext, obj: MutableHandleObject<'_>, )

Source§

impl<D: DomTypes> UIEventInit<D>

Source

pub(crate) fn empty() -> Self

Source

pub(crate) fn new( cx: SafeJSContext, val: HandleValue<'_>, ) -> Result<ConversionResult<UIEventInit<D>>, ()>

Trait Implementations

Source§

impl<D: DomTypes> Default for UIEventInit<D>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<D: DomTypes> FromJSValConvertible for UIEventInit<D>

Source§

type Config = ()

Optional configurable behaviour switch; use () for no configuration.
Source§

unsafe fn from_jsval( cx: *mut JSContext, value: HandleValue<'_>, _option: (), ) -> Result<ConversionResult<UIEventInit<D>>, ()>

Convert val to type Self. Optional configuration of type T can be passed as the option argument. If it returns Err(()), a JSAPI exception is pending. If it returns Ok(Failure(reason)), there is no pending JSAPI exception.
Source§

impl<D: DomTypes> ToJSValConvertible for UIEventInit<D>

Source§

unsafe fn to_jsval(&self, cx: *mut JSContext, rval: MutableHandleValue<'_>)

Convert self to a JSVal. JSAPI failure causes a panic.
Source§

impl<D> Traceable for UIEventInit<D>
where D: JSTraceable + DomTypes,

Source§

unsafe fn trace(&self, tracer: *mut JSTracer)

Trace self.