pub struct TargetDelta {
pub name: String,
pub data: Vec<u8>,
}Expand description
Raw morph target delta stored as binary data.
Fields§
§name: StringLogical name for this target.
data: Vec<u8>Binary data (e.g. OBJ target offsets).
Trait Implementations§
Source§impl Clone for TargetDelta
impl Clone for TargetDelta
Source§fn clone(&self) -> TargetDelta
fn clone(&self) -> TargetDelta
Returns a duplicate of the value. Read more
1.0.0 · 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 TargetDelta
impl RefUnwindSafe for TargetDelta
impl Send for TargetDelta
impl Sync for TargetDelta
impl Unpin for TargetDelta
impl UnsafeUnpin for TargetDelta
impl UnwindSafe for TargetDelta
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