pub(crate) trait DOMPointReadOnlyMethods<D: DomTypes> {
// Required methods
fn FromPoint(
global: &D::GlobalScope,
other: &DOMPointInit,
_can_gc: CanGc,
) -> DomRoot<D::DOMPointReadOnly>;
fn X(&self) -> f64;
fn Y(&self) -> f64;
fn Z(&self) -> f64;
fn W(&self) -> f64;
fn Constructor(
global: &D::GlobalScope,
proto: Option<HandleObject<'_>>,
can_gc: CanGc,
x: f64,
y: f64,
z: f64,
w: f64,
) -> Fallible<DomRoot<D::DOMPointReadOnly>>;
}
Required Methods§
fn FromPoint( global: &D::GlobalScope, other: &DOMPointInit, _can_gc: CanGc, ) -> DomRoot<D::DOMPointReadOnly>
fn X(&self) -> f64
fn Y(&self) -> f64
fn Z(&self) -> f64
fn W(&self) -> f64
fn Constructor( global: &D::GlobalScope, proto: Option<HandleObject<'_>>, can_gc: CanGc, x: f64, y: f64, z: f64, w: f64, ) -> Fallible<DomRoot<D::DOMPointReadOnly>>
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.