pub(crate) trait DOMPointMethods<D: DomTypes> {
    // Required methods
    fn FromPoint(
        global: &D::GlobalScope,
        other: &DOMPointInit,
        _can_gc: CanGc,
    ) -> DomRoot<D::DOMPoint>;
    fn X(&self) -> f64;
    fn SetX(&self, value: f64);
    fn Y(&self) -> f64;
    fn SetY(&self, value: f64);
    fn Z(&self) -> f64;
    fn SetZ(&self, value: f64);
    fn W(&self) -> f64;
    fn SetW(&self, value: f64);
    fn Constructor(
        global: &D::GlobalScope,
        proto: Option<HandleObject<'_>>,
        can_gc: CanGc,
        x: f64,
        y: f64,
        z: f64,
        w: f64,
    ) -> Fallible<DomRoot<D::DOMPoint>>;
}

Required Methods§

Source

fn FromPoint( global: &D::GlobalScope, other: &DOMPointInit, _can_gc: CanGc, ) -> DomRoot<D::DOMPoint>

Source

fn X(&self) -> f64

Source

fn SetX(&self, value: f64)

Source

fn Y(&self) -> f64

Source

fn SetY(&self, value: f64)

Source

fn Z(&self) -> f64

Source

fn SetZ(&self, value: f64)

Source

fn W(&self) -> f64

Source

fn SetW(&self, value: f64)

Source

fn Constructor( global: &D::GlobalScope, proto: Option<HandleObject<'_>>, can_gc: CanGc, x: f64, y: f64, z: f64, w: f64, ) -> Fallible<DomRoot<D::DOMPoint>>

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.

Implementors§