pub struct SlotData {
pub name: String,
pub bone: usize,
pub attachment: Option<String>,
pub color: [f32; 4],
pub has_dark: bool,
pub dark_color: [f32; 3],
pub blend: BlendMode,
}Fields§
§name: String§bone: usize§attachment: Option<String>§color: [f32; 4]§has_dark: bool§dark_color: [f32; 3]§blend: BlendModeTrait Implementations§
Auto Trait Implementations§
impl Freeze for SlotData
impl RefUnwindSafe for SlotData
impl Send for SlotData
impl Sync for SlotData
impl Unpin for SlotData
impl UnwindSafe for SlotData
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