[][src]Struct iced_audio::style::h_slider::ClassicHandle

pub struct ClassicHandle {
    pub color: Color,
    pub width: u16,
    pub notch_width: u16,
    pub notch_color: Color,
    pub border_radius: u16,
    pub border_width: u16,
    pub border_color: Color,
}

The ClassicStyle appearance of the handle of an HSlider

Fields

color: Color

background color

width: u16

width of the handle

notch_width: u16

width of the middle notch

notch_color: Color

color of the middle notch

border_radius: u16

radius of the background rectangle

border_width: u16

width of the background rectangle

border_color: Color

color of the background rectangle border

Trait Implementations

impl Clone for ClassicHandle[src]

impl Debug for ClassicHandle[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> SetParameter for T

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,