Struct sixtyfps_corelib::items::WindowFieldsOffsets[][src]

pub struct WindowFieldsOffsets {
    pub width: FieldOffset<Window, Property<f32>, AllowPin>,
    pub height: FieldOffset<Window, Property<f32>, AllowPin>,
    pub background: FieldOffset<Window, Property<Color>, AllowPin>,
    pub title: FieldOffset<Window, Property<SharedString>, AllowPin>,
    pub default_font_family: FieldOffset<Window, Property<SharedString>, AllowPin>,
    pub default_font_size: FieldOffset<Window, Property<f32>, AllowPin>,
    pub default_font_weight: FieldOffset<Window, Property<i32>, AllowPin>,
    pub cached_rendering_data: FieldOffset<Window, CachedRenderingData, AllowPin>,
}

Helper struct containing the offsets of the fields of the struct Window

Generated from the derive macro const-field-offset::FieldOffsets

Fields

width: FieldOffset<Window, Property<f32>, AllowPin>height: FieldOffset<Window, Property<f32>, AllowPin>background: FieldOffset<Window, Property<Color>, AllowPin>title: FieldOffset<Window, Property<SharedString>, AllowPin>default_font_family: FieldOffset<Window, Property<SharedString>, AllowPin>default_font_size: FieldOffset<Window, Property<f32>, AllowPin>default_font_weight: FieldOffset<Window, Property<i32>, AllowPin>cached_rendering_data: FieldOffset<Window, CachedRenderingData, AllowPin>

Auto Trait Implementations

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, 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.