pub struct PathConstraintData {Show 14 fields
pub name: String,
pub order: i32,
pub bones: Vec<usize>,
pub target: usize,
pub position_mode: PositionMode,
pub spacing_mode: SpacingMode,
pub rotate_mode: RotateMode,
pub offset_rotation: f32,
pub position: f32,
pub spacing: f32,
pub mix_rotate: f32,
pub mix_x: f32,
pub mix_y: f32,
pub skin_required: bool,
}Fields§
§name: String§order: i32§bones: Vec<usize>§target: usize§position_mode: PositionMode§spacing_mode: SpacingMode§rotate_mode: RotateMode§offset_rotation: f32§position: f32§spacing: f32§mix_rotate: f32§mix_x: f32§mix_y: f32§skin_required: boolTrait Implementations§
Source§impl Clone for PathConstraintData
impl Clone for PathConstraintData
Source§fn clone(&self) -> PathConstraintData
fn clone(&self) -> PathConstraintData
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 PathConstraintData
impl RefUnwindSafe for PathConstraintData
impl Send for PathConstraintData
impl Sync for PathConstraintData
impl Unpin for PathConstraintData
impl UnwindSafe for PathConstraintData
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