[][src]Struct sixtyfps_corelib::layout::BoxLayoutCellData

#[repr(C)]pub struct BoxLayoutCellData<'a> {
    pub constraint: LayoutInfo,
    pub x: Option<&'a Property<f32>>,
    pub y: Option<&'a Property<f32>>,
    pub width: Option<&'a Property<f32>>,
    pub height: Option<&'a Property<f32>>,
}

Fields

constraint: LayoutInfox: Option<&'a Property<f32>>y: Option<&'a Property<f32>>width: Option<&'a Property<f32>>height: Option<&'a Property<f32>>

Trait Implementations

impl<'a> Clone for BoxLayoutCellData<'a>[src]

impl<'a> Debug for BoxLayoutCellData<'a>[src]

impl<'a> Default for BoxLayoutCellData<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for BoxLayoutCellData<'a>

impl<'a> !Send for BoxLayoutCellData<'a>

impl<'a> !Sync for BoxLayoutCellData<'a>

impl<'a> Unpin for BoxLayoutCellData<'a>

impl<'a> !UnwindSafe for BoxLayoutCellData<'a>

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.