[][src]Struct iced_audio::style::knob::LineTickMarks

pub struct LineTickMarks {
    pub width_tier_1: f32,
    pub width_tier_2: f32,
    pub width_tier_3: f32,
    pub length_tier_1: f32,
    pub length_tier_2: f32,
    pub length_tier_3: f32,
    pub color_tier_1: Color,
    pub color_tier_2: Color,
    pub color_tier_3: Color,
    pub offset: f32,
}

A line TickMarkStyle for a Knob

Fields

width_tier_1: f32

The width (thickness) of a tier 1 tick mark

width_tier_2: f32

The width (thickness) of a tier 2 tick mark

width_tier_3: f32

The width (thickness) of a tier 3 tick mark

length_tier_1: f32

The length of a tier 1 tick mark

length_tier_2: f32

The length of a tier 2 tick mark

length_tier_3: f32

The length of a tier 3 tick mark

color_tier_1: Color

The color of a tier 1 tick mark

color_tier_2: Color

The color of a tier 2 tick mark

color_tier_3: Color

The color of a tier 3 tick mark

offset: f32

The distance from the tick mark to the outside edge of the knob

Trait Implementations

impl Clone for LineTickMarks[src]

impl Copy for LineTickMarks[src]

impl Debug for LineTickMarks[src]

impl Default for LineTickMarks[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>,