#[repr(C)]pub struct Patch3D {
pub u: V3,
pub v: V3,
pub origin: V3,
}
๐Deprecated since 0.30.0: Skia now has support for a 4x matrix (core::M44) in core::Canvas.
Fieldsยง
ยงu: V3
๐Deprecated since 0.30.0: Skia now has support for a 4x matrix (core::M44) in core::Canvas.
ยงv: V3
๐Deprecated since 0.30.0: Skia now has support for a 4x matrix (core::M44) in core::Canvas.
ยงorigin: V3
๐Deprecated since 0.30.0: Skia now has support for a 4x matrix (core::M44) in core::Canvas.
Implementationsยง
Trait Implementationsยง
impl StructuralPartialEq for Patch3D
Auto Trait Implementationsยง
impl Freeze for Patch3D
impl RefUnwindSafe for Patch3D
impl Send for Patch3D
impl Sync for Patch3D
impl Unpin for Patch3D
impl UnwindSafe for Patch3D
Blanket Implementationsยง
ยงimpl<T> AnyEq for T
impl<T> AnyEq for T
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
Mutably borrows from an owned value. Read more
sourceยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
sourceยงunsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
๐ฌThis is a nightly-only experimental API. (
clone_to_uninit
)ยงimpl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
ยงfn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.ยงfn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.ยงfn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
โs vtable from &Trait
โs.ยงfn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
โs vtable from &mut Trait
โs.