pub struct Turtle {Show 16 fields
pub align_list_x: usize,
pub align_list_y: usize,
pub pos: Vec2,
pub origin: Vec2,
pub bound_left_top: Vec2,
pub bound_right_bottom: Vec2,
pub width: f32,
pub height: f32,
pub min_width: f32,
pub min_height: f32,
pub abs_size: Vec2,
pub width_used: f32,
pub height_used: f32,
pub biggest: f32,
pub layout: Layout,
pub guard_area: Area,
}
Fields§
§align_list_x: usize
§align_list_y: usize
§pos: Vec2
§origin: Vec2
§bound_left_top: Vec2
§bound_right_bottom: Vec2
§width: f32
§height: f32
§min_width: f32
§min_height: f32
§abs_size: Vec2
§width_used: f32
§height_used: f32
§biggest: f32
§layout: Layout
§guard_area: Area
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Turtle
impl RefUnwindSafe for Turtle
impl Send for Turtle
impl Sync for Turtle
impl Unpin for Turtle
impl UnwindSafe for Turtle
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