pub struct WebKitCssMatrix { /* private fields */ }
Expand description
The WebKitCssMatrix
class.
This API requires the following crate features to be activated: WebKitCssMatrix
Implementations§
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn new() -> Result<WebKitCssMatrix, JsValue>
pub fn new() -> Result<WebKitCssMatrix, JsValue>
The new WebKitCssMatrix(..)
constructor, creating a new instance of WebKitCssMatrix
.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn new_with_transform_list(
transform_list: &str,
) -> Result<WebKitCssMatrix, JsValue>
pub fn new_with_transform_list( transform_list: &str, ) -> Result<WebKitCssMatrix, JsValue>
The new WebKitCssMatrix(..)
constructor, creating a new instance of WebKitCssMatrix
.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn new_with_other(
other: &WebKitCssMatrix,
) -> Result<WebKitCssMatrix, JsValue>
pub fn new_with_other( other: &WebKitCssMatrix, ) -> Result<WebKitCssMatrix, JsValue>
The new WebKitCssMatrix(..)
constructor, creating a new instance of WebKitCssMatrix
.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn inverse(&self) -> Result<WebKitCssMatrix, JsValue>
pub fn inverse(&self) -> Result<WebKitCssMatrix, JsValue>
The inverse()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn multiply(&self, other: &WebKitCssMatrix) -> WebKitCssMatrix
pub fn multiply(&self, other: &WebKitCssMatrix) -> WebKitCssMatrix
The multiply()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn rotate(&self) -> WebKitCssMatrix
pub fn rotate(&self) -> WebKitCssMatrix
The rotate()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn rotate_with_rot_x(&self, rot_x: f64) -> WebKitCssMatrix
pub fn rotate_with_rot_x(&self, rot_x: f64) -> WebKitCssMatrix
The rotate()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn rotate_with_rot_x_and_rot_y(
&self,
rot_x: f64,
rot_y: f64,
) -> WebKitCssMatrix
pub fn rotate_with_rot_x_and_rot_y( &self, rot_x: f64, rot_y: f64, ) -> WebKitCssMatrix
The rotate()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn rotate_with_rot_x_and_rot_y_and_rot_z(
&self,
rot_x: f64,
rot_y: f64,
rot_z: f64,
) -> WebKitCssMatrix
pub fn rotate_with_rot_x_and_rot_y_and_rot_z( &self, rot_x: f64, rot_y: f64, rot_z: f64, ) -> WebKitCssMatrix
The rotate()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn rotate_axis_angle(&self) -> WebKitCssMatrix
pub fn rotate_axis_angle(&self) -> WebKitCssMatrix
The rotateAxisAngle()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn rotate_axis_angle_with_x(&self, x: f64) -> WebKitCssMatrix
pub fn rotate_axis_angle_with_x(&self, x: f64) -> WebKitCssMatrix
The rotateAxisAngle()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn rotate_axis_angle_with_x_and_y(&self, x: f64, y: f64) -> WebKitCssMatrix
pub fn rotate_axis_angle_with_x_and_y(&self, x: f64, y: f64) -> WebKitCssMatrix
The rotateAxisAngle()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn rotate_axis_angle_with_x_and_y_and_z(
&self,
x: f64,
y: f64,
z: f64,
) -> WebKitCssMatrix
pub fn rotate_axis_angle_with_x_and_y_and_z( &self, x: f64, y: f64, z: f64, ) -> WebKitCssMatrix
The rotateAxisAngle()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn rotate_axis_angle_with_x_and_y_and_z_and_angle(
&self,
x: f64,
y: f64,
z: f64,
angle: f64,
) -> WebKitCssMatrix
pub fn rotate_axis_angle_with_x_and_y_and_z_and_angle( &self, x: f64, y: f64, z: f64, angle: f64, ) -> WebKitCssMatrix
The rotateAxisAngle()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn scale(&self) -> WebKitCssMatrix
pub fn scale(&self) -> WebKitCssMatrix
The scale()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn scale_with_scale_x(&self, scale_x: f64) -> WebKitCssMatrix
pub fn scale_with_scale_x(&self, scale_x: f64) -> WebKitCssMatrix
The scale()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn scale_with_scale_x_and_scale_y(
&self,
scale_x: f64,
scale_y: f64,
) -> WebKitCssMatrix
pub fn scale_with_scale_x_and_scale_y( &self, scale_x: f64, scale_y: f64, ) -> WebKitCssMatrix
The scale()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn scale_with_scale_x_and_scale_y_and_scale_z(
&self,
scale_x: f64,
scale_y: f64,
scale_z: f64,
) -> WebKitCssMatrix
pub fn scale_with_scale_x_and_scale_y_and_scale_z( &self, scale_x: f64, scale_y: f64, scale_z: f64, ) -> WebKitCssMatrix
The scale()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn set_matrix_value(
&self,
transform_list: &str,
) -> Result<WebKitCssMatrix, JsValue>
pub fn set_matrix_value( &self, transform_list: &str, ) -> Result<WebKitCssMatrix, JsValue>
The setMatrixValue()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn skew_x(&self) -> WebKitCssMatrix
pub fn skew_x(&self) -> WebKitCssMatrix
The skewX()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn skew_x_with_sx(&self, sx: f64) -> WebKitCssMatrix
pub fn skew_x_with_sx(&self, sx: f64) -> WebKitCssMatrix
The skewX()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn skew_y(&self) -> WebKitCssMatrix
pub fn skew_y(&self) -> WebKitCssMatrix
The skewY()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn skew_y_with_sy(&self, sy: f64) -> WebKitCssMatrix
pub fn skew_y_with_sy(&self, sy: f64) -> WebKitCssMatrix
The skewY()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn translate(&self) -> WebKitCssMatrix
pub fn translate(&self) -> WebKitCssMatrix
The translate()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn translate_with_tx(&self, tx: f64) -> WebKitCssMatrix
pub fn translate_with_tx(&self, tx: f64) -> WebKitCssMatrix
The translate()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn translate_with_tx_and_ty(&self, tx: f64, ty: f64) -> WebKitCssMatrix
pub fn translate_with_tx_and_ty(&self, tx: f64, ty: f64) -> WebKitCssMatrix
The translate()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Source§impl WebKitCssMatrix
impl WebKitCssMatrix
Sourcepub fn translate_with_tx_and_ty_and_tz(
&self,
tx: f64,
ty: f64,
tz: f64,
) -> WebKitCssMatrix
pub fn translate_with_tx_and_ty_and_tz( &self, tx: f64, ty: f64, tz: f64, ) -> WebKitCssMatrix
The translate()
method.
This API requires the following crate features to be activated: WebKitCssMatrix
Methods from Deref<Target = DomMatrix>§
Sourcepub fn a(&self) -> f64
pub fn a(&self) -> f64
Getter for the a
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_a(&self, value: f64)
pub fn set_a(&self, value: f64)
Setter for the a
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn b(&self) -> f64
pub fn b(&self) -> f64
Getter for the b
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_b(&self, value: f64)
pub fn set_b(&self, value: f64)
Setter for the b
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn c(&self) -> f64
pub fn c(&self) -> f64
Getter for the c
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_c(&self, value: f64)
pub fn set_c(&self, value: f64)
Setter for the c
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn d(&self) -> f64
pub fn d(&self) -> f64
Getter for the d
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_d(&self, value: f64)
pub fn set_d(&self, value: f64)
Setter for the d
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn e(&self) -> f64
pub fn e(&self) -> f64
Getter for the e
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_e(&self, value: f64)
pub fn set_e(&self, value: f64)
Setter for the e
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn f(&self) -> f64
pub fn f(&self) -> f64
Getter for the f
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_f(&self, value: f64)
pub fn set_f(&self, value: f64)
Setter for the f
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn m11(&self) -> f64
pub fn m11(&self) -> f64
Getter for the m11
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_m11(&self, value: f64)
pub fn set_m11(&self, value: f64)
Setter for the m11
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn m12(&self) -> f64
pub fn m12(&self) -> f64
Getter for the m12
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_m12(&self, value: f64)
pub fn set_m12(&self, value: f64)
Setter for the m12
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn m13(&self) -> f64
pub fn m13(&self) -> f64
Getter for the m13
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_m13(&self, value: f64)
pub fn set_m13(&self, value: f64)
Setter for the m13
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn m14(&self) -> f64
pub fn m14(&self) -> f64
Getter for the m14
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_m14(&self, value: f64)
pub fn set_m14(&self, value: f64)
Setter for the m14
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn m21(&self) -> f64
pub fn m21(&self) -> f64
Getter for the m21
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_m21(&self, value: f64)
pub fn set_m21(&self, value: f64)
Setter for the m21
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn m22(&self) -> f64
pub fn m22(&self) -> f64
Getter for the m22
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_m22(&self, value: f64)
pub fn set_m22(&self, value: f64)
Setter for the m22
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn m23(&self) -> f64
pub fn m23(&self) -> f64
Getter for the m23
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_m23(&self, value: f64)
pub fn set_m23(&self, value: f64)
Setter for the m23
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn m24(&self) -> f64
pub fn m24(&self) -> f64
Getter for the m24
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_m24(&self, value: f64)
pub fn set_m24(&self, value: f64)
Setter for the m24
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn m31(&self) -> f64
pub fn m31(&self) -> f64
Getter for the m31
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_m31(&self, value: f64)
pub fn set_m31(&self, value: f64)
Setter for the m31
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn m32(&self) -> f64
pub fn m32(&self) -> f64
Getter for the m32
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_m32(&self, value: f64)
pub fn set_m32(&self, value: f64)
Setter for the m32
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn m33(&self) -> f64
pub fn m33(&self) -> f64
Getter for the m33
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_m33(&self, value: f64)
pub fn set_m33(&self, value: f64)
Setter for the m33
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn m34(&self) -> f64
pub fn m34(&self) -> f64
Getter for the m34
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_m34(&self, value: f64)
pub fn set_m34(&self, value: f64)
Setter for the m34
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn m41(&self) -> f64
pub fn m41(&self) -> f64
Getter for the m41
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_m41(&self, value: f64)
pub fn set_m41(&self, value: f64)
Setter for the m41
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn m42(&self) -> f64
pub fn m42(&self) -> f64
Getter for the m42
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_m42(&self, value: f64)
pub fn set_m42(&self, value: f64)
Setter for the m42
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn m43(&self) -> f64
pub fn m43(&self) -> f64
Getter for the m43
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_m43(&self, value: f64)
pub fn set_m43(&self, value: f64)
Setter for the m43
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn m44(&self) -> f64
pub fn m44(&self) -> f64
Getter for the m44
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_m44(&self, value: f64)
pub fn set_m44(&self, value: f64)
Setter for the m44
field of this object.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn invert_self(&self) -> DomMatrix
pub fn invert_self(&self) -> DomMatrix
The invertSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn multiply_self(&self, other: &DomMatrix) -> DomMatrix
pub fn multiply_self(&self, other: &DomMatrix) -> DomMatrix
The multiplySelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn pre_multiply_self(&self, other: &DomMatrix) -> DomMatrix
pub fn pre_multiply_self(&self, other: &DomMatrix) -> DomMatrix
The preMultiplySelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn rotate_axis_angle_self(
&self,
x: f64,
y: f64,
z: f64,
angle: f64,
) -> DomMatrix
pub fn rotate_axis_angle_self( &self, x: f64, y: f64, z: f64, angle: f64, ) -> DomMatrix
The rotateAxisAngleSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn rotate_from_vector_self(&self, x: f64, y: f64) -> DomMatrix
pub fn rotate_from_vector_self(&self, x: f64, y: f64) -> DomMatrix
The rotateFromVectorSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn rotate_self(&self, angle: f64) -> DomMatrix
pub fn rotate_self(&self, angle: f64) -> DomMatrix
The rotateSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn rotate_self_with_origin_x(&self, angle: f64, origin_x: f64) -> DomMatrix
pub fn rotate_self_with_origin_x(&self, angle: f64, origin_x: f64) -> DomMatrix
The rotateSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn rotate_self_with_origin_x_and_origin_y(
&self,
angle: f64,
origin_x: f64,
origin_y: f64,
) -> DomMatrix
pub fn rotate_self_with_origin_x_and_origin_y( &self, angle: f64, origin_x: f64, origin_y: f64, ) -> DomMatrix
The rotateSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn scale3d_self(&self, scale: f64) -> DomMatrix
pub fn scale3d_self(&self, scale: f64) -> DomMatrix
The scale3dSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn scale3d_self_with_origin_x(&self, scale: f64, origin_x: f64) -> DomMatrix
pub fn scale3d_self_with_origin_x(&self, scale: f64, origin_x: f64) -> DomMatrix
The scale3dSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn scale3d_self_with_origin_x_and_origin_y(
&self,
scale: f64,
origin_x: f64,
origin_y: f64,
) -> DomMatrix
pub fn scale3d_self_with_origin_x_and_origin_y( &self, scale: f64, origin_x: f64, origin_y: f64, ) -> DomMatrix
The scale3dSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn scale3d_self_with_origin_x_and_origin_y_and_origin_z(
&self,
scale: f64,
origin_x: f64,
origin_y: f64,
origin_z: f64,
) -> DomMatrix
pub fn scale3d_self_with_origin_x_and_origin_y_and_origin_z( &self, scale: f64, origin_x: f64, origin_y: f64, origin_z: f64, ) -> DomMatrix
The scale3dSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn scale_non_uniform_self(&self, scale_x: f64) -> DomMatrix
pub fn scale_non_uniform_self(&self, scale_x: f64) -> DomMatrix
The scaleNonUniformSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn scale_non_uniform_self_with_scale_y(
&self,
scale_x: f64,
scale_y: f64,
) -> DomMatrix
pub fn scale_non_uniform_self_with_scale_y( &self, scale_x: f64, scale_y: f64, ) -> DomMatrix
The scaleNonUniformSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn scale_non_uniform_self_with_scale_y_and_scale_z(
&self,
scale_x: f64,
scale_y: f64,
scale_z: f64,
) -> DomMatrix
pub fn scale_non_uniform_self_with_scale_y_and_scale_z( &self, scale_x: f64, scale_y: f64, scale_z: f64, ) -> DomMatrix
The scaleNonUniformSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn scale_non_uniform_self_with_scale_y_and_scale_z_and_origin_x(
&self,
scale_x: f64,
scale_y: f64,
scale_z: f64,
origin_x: f64,
) -> DomMatrix
pub fn scale_non_uniform_self_with_scale_y_and_scale_z_and_origin_x( &self, scale_x: f64, scale_y: f64, scale_z: f64, origin_x: f64, ) -> DomMatrix
The scaleNonUniformSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn scale_non_uniform_self_with_scale_y_and_scale_z_and_origin_x_and_origin_y(
&self,
scale_x: f64,
scale_y: f64,
scale_z: f64,
origin_x: f64,
origin_y: f64,
) -> DomMatrix
pub fn scale_non_uniform_self_with_scale_y_and_scale_z_and_origin_x_and_origin_y( &self, scale_x: f64, scale_y: f64, scale_z: f64, origin_x: f64, origin_y: f64, ) -> DomMatrix
The scaleNonUniformSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn scale_non_uniform_self_with_scale_y_and_scale_z_and_origin_x_and_origin_y_and_origin_z(
&self,
scale_x: f64,
scale_y: f64,
scale_z: f64,
origin_x: f64,
origin_y: f64,
origin_z: f64,
) -> DomMatrix
pub fn scale_non_uniform_self_with_scale_y_and_scale_z_and_origin_x_and_origin_y_and_origin_z( &self, scale_x: f64, scale_y: f64, scale_z: f64, origin_x: f64, origin_y: f64, origin_z: f64, ) -> DomMatrix
The scaleNonUniformSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn scale_self(&self, scale: f64) -> DomMatrix
pub fn scale_self(&self, scale: f64) -> DomMatrix
The scaleSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn scale_self_with_origin_x(&self, scale: f64, origin_x: f64) -> DomMatrix
pub fn scale_self_with_origin_x(&self, scale: f64, origin_x: f64) -> DomMatrix
The scaleSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn scale_self_with_origin_x_and_origin_y(
&self,
scale: f64,
origin_x: f64,
origin_y: f64,
) -> DomMatrix
pub fn scale_self_with_origin_x_and_origin_y( &self, scale: f64, origin_x: f64, origin_y: f64, ) -> DomMatrix
The scaleSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn set_matrix_value(
&self,
transform_list: &str,
) -> Result<DomMatrix, JsValue>
pub fn set_matrix_value( &self, transform_list: &str, ) -> Result<DomMatrix, JsValue>
The setMatrixValue()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn skew_x_self(&self, sx: f64) -> DomMatrix
pub fn skew_x_self(&self, sx: f64) -> DomMatrix
The skewXSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn skew_y_self(&self, sy: f64) -> DomMatrix
pub fn skew_y_self(&self, sy: f64) -> DomMatrix
The skewYSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Sourcepub fn translate_self(&self, tx: f64, ty: f64) -> DomMatrix
pub fn translate_self(&self, tx: f64, ty: f64) -> DomMatrix
The translateSelf()
method.
This API requires the following crate features to be activated: DomMatrix
Methods from Deref<Target = DomMatrixReadOnly>§
Sourcepub fn a(&self) -> f64
pub fn a(&self) -> f64
Getter for the a
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn b(&self) -> f64
pub fn b(&self) -> f64
Getter for the b
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn c(&self) -> f64
pub fn c(&self) -> f64
Getter for the c
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn d(&self) -> f64
pub fn d(&self) -> f64
Getter for the d
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn e(&self) -> f64
pub fn e(&self) -> f64
Getter for the e
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn f(&self) -> f64
pub fn f(&self) -> f64
Getter for the f
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn m11(&self) -> f64
pub fn m11(&self) -> f64
Getter for the m11
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn m12(&self) -> f64
pub fn m12(&self) -> f64
Getter for the m12
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn m13(&self) -> f64
pub fn m13(&self) -> f64
Getter for the m13
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn m14(&self) -> f64
pub fn m14(&self) -> f64
Getter for the m14
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn m21(&self) -> f64
pub fn m21(&self) -> f64
Getter for the m21
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn m22(&self) -> f64
pub fn m22(&self) -> f64
Getter for the m22
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn m23(&self) -> f64
pub fn m23(&self) -> f64
Getter for the m23
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn m24(&self) -> f64
pub fn m24(&self) -> f64
Getter for the m24
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn m31(&self) -> f64
pub fn m31(&self) -> f64
Getter for the m31
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn m32(&self) -> f64
pub fn m32(&self) -> f64
Getter for the m32
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn m33(&self) -> f64
pub fn m33(&self) -> f64
Getter for the m33
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn m34(&self) -> f64
pub fn m34(&self) -> f64
Getter for the m34
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn m41(&self) -> f64
pub fn m41(&self) -> f64
Getter for the m41
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn m42(&self) -> f64
pub fn m42(&self) -> f64
Getter for the m42
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn m43(&self) -> f64
pub fn m43(&self) -> f64
Getter for the m43
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn m44(&self) -> f64
pub fn m44(&self) -> f64
Getter for the m44
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn is_2d(&self) -> bool
pub fn is_2d(&self) -> bool
Getter for the is2D
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn is_identity(&self) -> bool
pub fn is_identity(&self) -> bool
Getter for the isIdentity
field of this object.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn flip_x(&self) -> DomMatrix
pub fn flip_x(&self) -> DomMatrix
The flipX()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn flip_y(&self) -> DomMatrix
pub fn flip_y(&self) -> DomMatrix
The flipY()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn inverse(&self) -> DomMatrix
pub fn inverse(&self) -> DomMatrix
The inverse()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn multiply(&self, other: &DomMatrix) -> DomMatrix
pub fn multiply(&self, other: &DomMatrix) -> DomMatrix
The multiply()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn rotate(&self, angle: f64) -> DomMatrix
pub fn rotate(&self, angle: f64) -> DomMatrix
The rotate()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn rotate_with_origin_x(&self, angle: f64, origin_x: f64) -> DomMatrix
pub fn rotate_with_origin_x(&self, angle: f64, origin_x: f64) -> DomMatrix
The rotate()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn rotate_with_origin_x_and_origin_y(
&self,
angle: f64,
origin_x: f64,
origin_y: f64,
) -> DomMatrix
pub fn rotate_with_origin_x_and_origin_y( &self, angle: f64, origin_x: f64, origin_y: f64, ) -> DomMatrix
The rotate()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn rotate_axis_angle(&self, x: f64, y: f64, z: f64, angle: f64) -> DomMatrix
pub fn rotate_axis_angle(&self, x: f64, y: f64, z: f64, angle: f64) -> DomMatrix
The rotateAxisAngle()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn rotate_from_vector(&self, x: f64, y: f64) -> DomMatrix
pub fn rotate_from_vector(&self, x: f64, y: f64) -> DomMatrix
The rotateFromVector()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn scale(&self, scale: f64) -> DomMatrix
pub fn scale(&self, scale: f64) -> DomMatrix
The scale()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn scale_with_origin_x(&self, scale: f64, origin_x: f64) -> DomMatrix
pub fn scale_with_origin_x(&self, scale: f64, origin_x: f64) -> DomMatrix
The scale()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn scale_with_origin_x_and_origin_y(
&self,
scale: f64,
origin_x: f64,
origin_y: f64,
) -> DomMatrix
pub fn scale_with_origin_x_and_origin_y( &self, scale: f64, origin_x: f64, origin_y: f64, ) -> DomMatrix
The scale()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn scale3d(&self, scale: f64) -> DomMatrix
pub fn scale3d(&self, scale: f64) -> DomMatrix
The scale3d()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn scale3d_with_origin_x(&self, scale: f64, origin_x: f64) -> DomMatrix
pub fn scale3d_with_origin_x(&self, scale: f64, origin_x: f64) -> DomMatrix
The scale3d()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn scale3d_with_origin_x_and_origin_y(
&self,
scale: f64,
origin_x: f64,
origin_y: f64,
) -> DomMatrix
pub fn scale3d_with_origin_x_and_origin_y( &self, scale: f64, origin_x: f64, origin_y: f64, ) -> DomMatrix
The scale3d()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn scale3d_with_origin_x_and_origin_y_and_origin_z(
&self,
scale: f64,
origin_x: f64,
origin_y: f64,
origin_z: f64,
) -> DomMatrix
pub fn scale3d_with_origin_x_and_origin_y_and_origin_z( &self, scale: f64, origin_x: f64, origin_y: f64, origin_z: f64, ) -> DomMatrix
The scale3d()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn scale_non_uniform(&self, scale_x: f64) -> DomMatrix
pub fn scale_non_uniform(&self, scale_x: f64) -> DomMatrix
The scaleNonUniform()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn scale_non_uniform_with_scale_y(
&self,
scale_x: f64,
scale_y: f64,
) -> DomMatrix
pub fn scale_non_uniform_with_scale_y( &self, scale_x: f64, scale_y: f64, ) -> DomMatrix
The scaleNonUniform()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn scale_non_uniform_with_scale_y_and_scale_z(
&self,
scale_x: f64,
scale_y: f64,
scale_z: f64,
) -> DomMatrix
pub fn scale_non_uniform_with_scale_y_and_scale_z( &self, scale_x: f64, scale_y: f64, scale_z: f64, ) -> DomMatrix
The scaleNonUniform()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn scale_non_uniform_with_scale_y_and_scale_z_and_origin_x(
&self,
scale_x: f64,
scale_y: f64,
scale_z: f64,
origin_x: f64,
) -> DomMatrix
pub fn scale_non_uniform_with_scale_y_and_scale_z_and_origin_x( &self, scale_x: f64, scale_y: f64, scale_z: f64, origin_x: f64, ) -> DomMatrix
The scaleNonUniform()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn scale_non_uniform_with_scale_y_and_scale_z_and_origin_x_and_origin_y(
&self,
scale_x: f64,
scale_y: f64,
scale_z: f64,
origin_x: f64,
origin_y: f64,
) -> DomMatrix
pub fn scale_non_uniform_with_scale_y_and_scale_z_and_origin_x_and_origin_y( &self, scale_x: f64, scale_y: f64, scale_z: f64, origin_x: f64, origin_y: f64, ) -> DomMatrix
The scaleNonUniform()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn scale_non_uniform_with_scale_y_and_scale_z_and_origin_x_and_origin_y_and_origin_z(
&self,
scale_x: f64,
scale_y: f64,
scale_z: f64,
origin_x: f64,
origin_y: f64,
origin_z: f64,
) -> DomMatrix
pub fn scale_non_uniform_with_scale_y_and_scale_z_and_origin_x_and_origin_y_and_origin_z( &self, scale_x: f64, scale_y: f64, scale_z: f64, origin_x: f64, origin_y: f64, origin_z: f64, ) -> DomMatrix
The scaleNonUniform()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn skew_x(&self, sx: f64) -> DomMatrix
pub fn skew_x(&self, sx: f64) -> DomMatrix
The skewX()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn skew_y(&self, sy: f64) -> DomMatrix
pub fn skew_y(&self, sy: f64) -> DomMatrix
The skewY()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Sourcepub fn to_float32_array(&self) -> Result<Vec<f32>, JsValue>
pub fn to_float32_array(&self) -> Result<Vec<f32>, JsValue>
The toFloat32Array()
method.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn to_float64_array(&self) -> Result<Vec<f64>, JsValue>
pub fn to_float64_array(&self) -> Result<Vec<f64>, JsValue>
The toFloat64Array()
method.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn to_json(&self) -> Object
pub fn to_json(&self) -> Object
The toJSON()
method.
This API requires the following crate features to be activated: DomMatrixReadOnly
Sourcepub fn transform_point(&self) -> DomPoint
pub fn transform_point(&self) -> DomPoint
The transformPoint()
method.
This API requires the following crate features to be activated: DomMatrixReadOnly
, DomPoint
Sourcepub fn transform_point_with_point(&self, point: &DomPointInit) -> DomPoint
pub fn transform_point_with_point(&self, point: &DomPointInit) -> DomPoint
The transformPoint()
method.
This API requires the following crate features to be activated: DomMatrixReadOnly
, DomPoint
, DomPointInit
Sourcepub fn translate(&self, tx: f64, ty: f64) -> DomMatrix
pub fn translate(&self, tx: f64, ty: f64) -> DomMatrix
The translate()
method.
This API requires the following crate features to be activated: DomMatrix
, DomMatrixReadOnly
Methods from Deref<Target = Object>§
Sourcepub fn constructor(&self) -> Function
pub fn constructor(&self) -> Function
The constructor property returns a reference to the Object
constructor
function that created the instance object.
Sourcepub fn has_own_property(&self, property: &JsValue) -> bool
pub fn has_own_property(&self, property: &JsValue) -> bool
The hasOwnProperty()
method returns a boolean indicating whether the
object has the specified property as its own property (as opposed to
inheriting it).
Sourcepub fn is_prototype_of(&self, value: &JsValue) -> bool
pub fn is_prototype_of(&self, value: &JsValue) -> bool
The isPrototypeOf()
method checks if an object exists in another
object’s prototype chain.
Sourcepub fn property_is_enumerable(&self, property: &JsValue) -> bool
pub fn property_is_enumerable(&self, property: &JsValue) -> bool
The propertyIsEnumerable()
method returns a Boolean indicating
whether the specified property is enumerable.
Sourcepub fn to_locale_string(&self) -> JsString
pub fn to_locale_string(&self) -> JsString
The toLocaleString()
method returns a string representing the object.
This method is meant to be overridden by derived objects for
locale-specific purposes.
Sourcepub fn to_string(&self) -> JsString
pub fn to_string(&self) -> JsString
The toString()
method returns a string representing the object.
Methods from Deref<Target = JsValue>§
pub const NULL: JsValue = _
pub const UNDEFINED: JsValue = _
pub const TRUE: JsValue = _
pub const FALSE: JsValue = _
Sourcepub fn as_f64(&self) -> Option<f64>
pub fn as_f64(&self) -> Option<f64>
Returns the f64
value of this JS value if it’s an instance of a
number.
If this JS value is not an instance of a number then this returns
None
.
Sourcepub fn as_string(&self) -> Option<String>
pub fn as_string(&self) -> Option<String>
If this JS value is a string value, this function copies the JS string
value into Wasm linear memory, encoded as UTF-8, and returns it as a
Rust String
.
To avoid the copying and re-encoding, consider the
JsString::try_from()
function from js-sys
instead.
If this JS value is not an instance of a string or if it’s not valid
utf-8 then this returns None
.
§UTF-16 vs UTF-8
JavaScript strings in general are encoded as UTF-16, but Rust strings
are encoded as UTF-8. This can cause the Rust string to look a bit
different than the JS string sometimes. For more details see the
documentation about the str
type which contains a few
caveats about the encodings.
Sourcepub fn as_bool(&self) -> Option<bool>
pub fn as_bool(&self) -> Option<bool>
Returns the bool
value of this JS value if it’s an instance of a
boolean.
If this JS value is not an instance of a boolean then this returns
None
.
Sourcepub fn is_undefined(&self) -> bool
pub fn is_undefined(&self) -> bool
Tests whether this JS value is undefined
Sourcepub fn is_function(&self) -> bool
pub fn is_function(&self) -> bool
Tests whether the type of this JS value is function
.
Sourcepub fn js_in(&self, obj: &JsValue) -> bool
pub fn js_in(&self, obj: &JsValue) -> bool
Applies the binary in
JS operator on the two JsValue
s.
Sourcepub fn loose_eq(&self, other: &JsValue) -> bool
pub fn loose_eq(&self, other: &JsValue) -> bool
Compare two JsValue
s for equality, using the ==
operator in JS.
Sourcepub fn unsigned_shr(&self, rhs: &JsValue) -> u32
pub fn unsigned_shr(&self, rhs: &JsValue) -> u32
Applies the binary >>>
JS operator on the two JsValue
s.
Sourcepub fn checked_div(&self, rhs: &JsValue) -> JsValue
pub fn checked_div(&self, rhs: &JsValue) -> JsValue
Applies the binary /
JS operator on two JsValue
s, catching and returning any RangeError
thrown.
Sourcepub fn pow(&self, rhs: &JsValue) -> JsValue
pub fn pow(&self, rhs: &JsValue) -> JsValue
Applies the binary **
JS operator on the two JsValue
s.
Sourcepub fn lt(&self, other: &JsValue) -> bool
pub fn lt(&self, other: &JsValue) -> bool
Applies the binary <
JS operator on the two JsValue
s.
Sourcepub fn le(&self, other: &JsValue) -> bool
pub fn le(&self, other: &JsValue) -> bool
Applies the binary <=
JS operator on the two JsValue
s.
Sourcepub fn ge(&self, other: &JsValue) -> bool
pub fn ge(&self, other: &JsValue) -> bool
Applies the binary >=
JS operator on the two JsValue
s.
Sourcepub fn gt(&self, other: &JsValue) -> bool
pub fn gt(&self, other: &JsValue) -> bool
Applies the binary >
JS operator on the two JsValue
s.
Sourcepub fn unchecked_into_f64(&self) -> f64
pub fn unchecked_into_f64(&self) -> f64
Applies the unary +
JS operator on a JsValue
. Can throw.
Trait Implementations§
Source§impl AsRef<DomMatrix> for WebKitCssMatrix
impl AsRef<DomMatrix> for WebKitCssMatrix
Source§impl AsRef<DomMatrixReadOnly> for WebKitCssMatrix
impl AsRef<DomMatrixReadOnly> for WebKitCssMatrix
Source§fn as_ref(&self) -> &DomMatrixReadOnly
fn as_ref(&self) -> &DomMatrixReadOnly
Source§impl AsRef<JsValue> for WebKitCssMatrix
impl AsRef<JsValue> for WebKitCssMatrix
Source§impl AsRef<Object> for WebKitCssMatrix
impl AsRef<Object> for WebKitCssMatrix
Source§impl AsRef<WebKitCssMatrix> for WebKitCssMatrix
impl AsRef<WebKitCssMatrix> for WebKitCssMatrix
Source§fn as_ref(&self) -> &WebKitCssMatrix
fn as_ref(&self) -> &WebKitCssMatrix
Source§impl Clone for WebKitCssMatrix
impl Clone for WebKitCssMatrix
Source§fn clone(&self) -> WebKitCssMatrix
fn clone(&self) -> WebKitCssMatrix
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for WebKitCssMatrix
impl Debug for WebKitCssMatrix
Source§impl Deref for WebKitCssMatrix
impl Deref for WebKitCssMatrix
Source§impl From<JsValue> for WebKitCssMatrix
impl From<JsValue> for WebKitCssMatrix
Source§fn from(obj: JsValue) -> WebKitCssMatrix
fn from(obj: JsValue) -> WebKitCssMatrix
Source§impl From<WebKitCssMatrix> for DomMatrix
impl From<WebKitCssMatrix> for DomMatrix
Source§fn from(obj: WebKitCssMatrix) -> DomMatrix
fn from(obj: WebKitCssMatrix) -> DomMatrix
Source§impl From<WebKitCssMatrix> for DomMatrixReadOnly
impl From<WebKitCssMatrix> for DomMatrixReadOnly
Source§fn from(obj: WebKitCssMatrix) -> DomMatrixReadOnly
fn from(obj: WebKitCssMatrix) -> DomMatrixReadOnly
Source§impl From<WebKitCssMatrix> for JsValue
impl From<WebKitCssMatrix> for JsValue
Source§fn from(obj: WebKitCssMatrix) -> JsValue
fn from(obj: WebKitCssMatrix) -> JsValue
Source§impl From<WebKitCssMatrix> for Object
impl From<WebKitCssMatrix> for Object
Source§fn from(obj: WebKitCssMatrix) -> Object
fn from(obj: WebKitCssMatrix) -> Object
Source§impl FromWasmAbi for WebKitCssMatrix
impl FromWasmAbi for WebKitCssMatrix
Source§impl<'a> IntoWasmAbi for &'a WebKitCssMatrix
impl<'a> IntoWasmAbi for &'a WebKitCssMatrix
Source§impl IntoWasmAbi for WebKitCssMatrix
impl IntoWasmAbi for WebKitCssMatrix
Source§impl JsCast for WebKitCssMatrix
impl JsCast for WebKitCssMatrix
Source§fn instanceof(val: &JsValue) -> bool
fn instanceof(val: &JsValue) -> bool
instanceof
check to see whether the JsValue
provided is an instance of this type. Read moreSource§fn unchecked_from_js(val: JsValue) -> Self
fn unchecked_from_js(val: JsValue) -> Self
Source§fn unchecked_from_js_ref(val: &JsValue) -> &Self
fn unchecked_from_js_ref(val: &JsValue) -> &Self
Source§fn has_type<T>(&self) -> boolwhere
T: JsCast,
fn has_type<T>(&self) -> boolwhere
T: JsCast,
T
. Read moreSource§fn dyn_into<T>(self) -> Result<T, Self>where
T: JsCast,
fn dyn_into<T>(self) -> Result<T, Self>where
T: JsCast,
T
. Read moreSource§fn dyn_ref<T>(&self) -> Option<&T>where
T: JsCast,
fn dyn_ref<T>(&self) -> Option<&T>where
T: JsCast,
T
. Read moreSource§fn unchecked_into<T>(self) -> Twhere
T: JsCast,
fn unchecked_into<T>(self) -> Twhere
T: JsCast,
Source§fn unchecked_ref<T>(&self) -> &Twhere
T: JsCast,
fn unchecked_ref<T>(&self) -> &Twhere
T: JsCast,
Source§impl LongRefFromWasmAbi for WebKitCssMatrix
impl LongRefFromWasmAbi for WebKitCssMatrix
Source§type Anchor = WebKitCssMatrix
type Anchor = WebKitCssMatrix
RefFromWasmAbi::Anchor
Source§unsafe fn long_ref_from_abi(js: Self::Abi) -> Self::Anchor
unsafe fn long_ref_from_abi(js: Self::Abi) -> Self::Anchor
RefFromWasmAbi::ref_from_abi
Source§impl OptionFromWasmAbi for WebKitCssMatrix
impl OptionFromWasmAbi for WebKitCssMatrix
Source§impl<'a> OptionIntoWasmAbi for &'a WebKitCssMatrix
impl<'a> OptionIntoWasmAbi for &'a WebKitCssMatrix
Source§impl OptionIntoWasmAbi for WebKitCssMatrix
impl OptionIntoWasmAbi for WebKitCssMatrix
Source§impl PartialEq for WebKitCssMatrix
impl PartialEq for WebKitCssMatrix
Source§impl RefFromWasmAbi for WebKitCssMatrix
impl RefFromWasmAbi for WebKitCssMatrix
Source§type Abi = <JsValue as RefFromWasmAbi>::Abi
type Abi = <JsValue as RefFromWasmAbi>::Abi
Self
are recovered from.Source§type Anchor = ManuallyDrop<WebKitCssMatrix>
type Anchor = ManuallyDrop<WebKitCssMatrix>
Self
for the duration of the
invocation of the function that has an &Self
parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.impl Eq for WebKitCssMatrix
impl StructuralPartialEq for WebKitCssMatrix
Auto Trait Implementations§
impl Freeze for WebKitCssMatrix
impl RefUnwindSafe for WebKitCssMatrix
impl !Send for WebKitCssMatrix
impl !Sync for WebKitCssMatrix
impl Unpin for WebKitCssMatrix
impl UnwindSafe for WebKitCssMatrix
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
IntoWasmAbi::Abi
Source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.