pub struct Model {
pub width: f32,
pub height: f32,
pub groups: Vec<(u32, Vec<GroupProperty>)>,
pub frames: Vec<Frame>,
}Expand description
Fields§
§width: f32§height: f32§groups: Vec<(u32, Vec<GroupProperty>)>§frames: Vec<Frame>Auto Trait Implementations§
impl Freeze for Model
impl RefUnwindSafe for Model
impl Send for Model
impl Sync for Model
impl Unpin for Model
impl UnwindSafe for Model
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