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

pub struct ClassicHandle {
    pub color: Color,
    pub width: u16,
    pub height: u16,
    pub notch_width: u16,
    pub notch_height: 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

  • color - background color
  • width - width of the handle
  • height - height of the handle
  • notch_width - width of the middle notch
  • notch_height - height of the middle notch
  • notch_color - color of the middle notch
  • border_radius - radius of the background rectangle
  • border_width - width of the background rectangle
  • border_color - color of the background rectangle border

Fields

color: Colorwidth: u16height: u16notch_width: u16notch_height: u16notch_color: Colorborder_radius: u16border_width: u16border_color: Color

Trait Implementations

impl Clone for ClassicHandle[src]

impl Copy 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> 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>,