Struct sixtyfps_rendering_backend_qt::native_widgets::NativeSlider[][src]

#[repr(C)]
pub struct NativeSlider { pub x: Property<f32>, pub y: Property<f32>, pub width: Property<f32>, pub height: Property<f32>, pub enabled: Property<bool>, pub value: Property<f32>, pub minimum: Property<f32>, pub maximum: Property<f32>, pub cached_rendering_data: CachedRenderingData, // some fields omitted }

Fields

x: Property<f32>y: Property<f32>width: Property<f32>height: Property<f32>enabled: Property<bool>value: Property<f32>minimum: Property<f32>maximum: Property<f32>cached_rendering_data: CachedRenderingData

Implementations

impl NativeSlider[src]

pub const FIELD_OFFSETS: NativeSliderFieldsOffsets[src]

Return a struct containing the offset of for the fields of this struct

impl NativeSlider[src]

pub fn x(self: Pin<&Self>) -> f32[src]

pub fn y(self: Pin<&Self>) -> f32[src]

pub fn width(self: Pin<&Self>) -> f32[src]

pub fn height(self: Pin<&Self>) -> f32[src]

pub fn enabled(self: Pin<&Self>) -> bool[src]

pub fn value(self: Pin<&Self>) -> f32[src]

pub fn minimum(self: Pin<&Self>) -> f32[src]

pub fn maximum(self: Pin<&Self>) -> f32[src]

Trait Implementations

impl BuiltinItem for NativeSlider[src]

impl Default for NativeSlider[src]

impl HasStaticVTable<ItemVTable> for NativeSlider[src]

impl Item for NativeSlider[src]

impl ItemConsts for NativeSlider[src]

impl<'__dummy_lifetime> Unpin for NativeSlider where
    __MustNotImplUnpin<'__dummy_lifetime>: Unpin
[src]

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.