pub trait DOMPointReadOnlyMethods<D>where
D: DomTypes,{
// Required methods
fn FromPoint(
cx: &mut JSContext,
global: &<D as DomTypes>::GlobalScope,
other: &DOMPointInit,
) -> Root<Dom<<D as DomTypes>::DOMPointReadOnly>>;
fn X(&self) -> f64;
fn Y(&self) -> f64;
fn Z(&self) -> f64;
fn W(&self) -> f64;
fn MatrixTransform(
&self,
cx: &mut JSContext,
matrix: &DOMMatrixInit,
) -> Result<Root<Dom<<D as DomTypes>::DOMPoint>>, Error>;
fn Constructor(
cx: &mut JSContext,
global: &<D as DomTypes>::GlobalScope,
proto: Option<Handle<'_, *mut JSObject>>,
x: f64,
y: f64,
z: f64,
w: f64,
) -> Result<Root<Dom<<D as DomTypes>::DOMPointReadOnly>>, Error>;
}Required Methods§
fn FromPoint( cx: &mut JSContext, global: &<D as DomTypes>::GlobalScope, other: &DOMPointInit, ) -> Root<Dom<<D as DomTypes>::DOMPointReadOnly>>
fn X(&self) -> f64
fn Y(&self) -> f64
fn Z(&self) -> f64
fn W(&self) -> f64
fn MatrixTransform( &self, cx: &mut JSContext, matrix: &DOMMatrixInit, ) -> Result<Root<Dom<<D as DomTypes>::DOMPoint>>, Error>
fn Constructor( cx: &mut JSContext, global: &<D as DomTypes>::GlobalScope, proto: Option<Handle<'_, *mut JSObject>>, x: f64, y: f64, z: f64, w: f64, ) -> Result<Root<Dom<<D as DomTypes>::DOMPointReadOnly>>, Error>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.