pub struct Objectgroup {
pub id: i64,
pub name: String,
pub color: String,
pub x: f32,
pub y: f32,
pub opacity: f32,
pub visible: bool,
pub offsetx: i32,
pub offsety: i32,
pub draworder: DrawOrder,
pub objects: Vec<Object>,
pub properties: Option<Vec<Property>>,
}
Fields§
§id: i64
§name: String
§color: String
§x: f32
§y: f32
§opacity: f32
§visible: bool
§offsetx: i32
§offsety: i32
§draworder: DrawOrder
§objects: Vec<Object>
§properties: Option<Vec<Property>>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Objectgroup
impl RefUnwindSafe for Objectgroup
impl Send for Objectgroup
impl Sync for Objectgroup
impl Unpin for Objectgroup
impl UnwindSafe for Objectgroup
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