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>
impl<D: DomTypes> UIEventInit<D>
pub(crate) unsafe fn to_jsobject( &self, cx: *mut JSContext, obj: MutableHandleObject<'_>, )
Source§impl<D: DomTypes> UIEventInit<D>
impl<D: DomTypes> UIEventInit<D>
pub(crate) fn empty() -> Self
pub(crate) fn new( cx: SafeJSContext, val: HandleValue<'_>, ) -> Result<ConversionResult<UIEventInit<D>>, ()>
Trait Implementations
Source§impl<D: DomTypes> Default for UIEventInit<D>
impl<D: DomTypes> Default for UIEventInit<D>
Source§impl<D: DomTypes> FromJSValConvertible for UIEventInit<D>
impl<D: DomTypes> FromJSValConvertible for UIEventInit<D>
Source§unsafe fn from_jsval(
cx: *mut JSContext,
value: HandleValue<'_>,
_option: (),
) -> Result<ConversionResult<UIEventInit<D>>, ()>
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.