pub(crate) type DOMRectInit = DOMRectInit;
Aliased Type§
struct DOMRectInit {
pub(crate) height: f64,
pub(crate) width: f64,
pub(crate) x: f64,
pub(crate) y: f64,
}
Fields§
§height: f64
§width: f64
§x: f64
§y: f64
Implementations
Source§impl DOMRectInit
impl DOMRectInit
pub(crate) unsafe fn to_jsobject( &self, cx: *mut JSContext, obj: MutableHandleObject<'_>, )
Source§impl DOMRectInit
impl DOMRectInit
pub(crate) fn empty() -> Self
pub(crate) fn new( cx: SafeJSContext, val: HandleValue<'_>, ) -> Result<ConversionResult<DOMRectInit>, ()>
Trait Implementations
Source§impl Default for DOMRectInit
impl Default for DOMRectInit
Source§impl FromJSValConvertible for DOMRectInit
impl FromJSValConvertible for DOMRectInit
Source§unsafe fn from_jsval(
cx: *mut JSContext,
value: HandleValue<'_>,
_option: (),
) -> Result<ConversionResult<DOMRectInit>, ()>
unsafe fn from_jsval( cx: *mut JSContext, value: HandleValue<'_>, _option: (), ) -> Result<ConversionResult<DOMRectInit>, ()>
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.