[][src]Struct makepad_render::Turtle

pub struct Turtle {
    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: usizealign_list_y: usizepos: Vec2origin: Vec2bound_left_top: Vec2bound_right_bottom: Vec2width: f32height: f32min_width: f32min_height: f32abs_size: Vec2width_used: f32height_used: f32biggest: f32layout: Layoutguard_area: Area

Trait Implementations

impl Clone for Turtle[src]

impl Debug for Turtle[src]

impl Default for Turtle[src]

Auto Trait Implementations

impl RefUnwindSafe for Turtle

impl Send for Turtle

impl Sync for Turtle

impl Unpin for Turtle

impl UnwindSafe for Turtle

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.