pub struct Shape {
pub id: ShapeId,
pub parent: Option<NonNull<Shape>>,
pub transition: Option<Transition>,
pub property_count: u32,
/* private fields */
}Fields§
§id: ShapeId§parent: Option<NonNull<Shape>>§transition: Option<Transition>§property_count: u32Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Shape
impl !RefUnwindSafe for Shape
impl Unpin for Shape
impl UnsafeUnpin for Shape
impl !UnwindSafe for Shape
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