pub enum TransformOpEvent {
Name,
Float4x4AtTime(f64),
Double4x4AtTime(f64),
IsInverseOp,
}Expand description
Describes one MDLTransformOp protocol request routed into Rust.
Variants§
Name
Requests the operation name.
Float4x4AtTime(f64)
Requests the single-precision matrix at the requested time.
Double4x4AtTime(f64)
Requests the double-precision matrix at the requested time.
IsInverseOp
Requests whether the operation is inverse.
Trait Implementations§
Source§impl Clone for TransformOpEvent
impl Clone for TransformOpEvent
Source§fn clone(&self) -> TransformOpEvent
fn clone(&self) -> TransformOpEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for TransformOpEvent
impl RefUnwindSafe for TransformOpEvent
impl Send for TransformOpEvent
impl Sync for TransformOpEvent
impl Unpin for TransformOpEvent
impl UnsafeUnpin for TransformOpEvent
impl UnwindSafe for TransformOpEvent
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
Mutably borrows from an owned value. Read more