[][src]Struct iced_audio::native::mod_range_input::State

pub struct State<ID: Debug + Copy + Clone> {
    pub param: Param<ID>,
    // some fields omitted
}

The local state of an ModRangeInput.

Fields

param: Param<ID>

The Param assigned to this widget

Implementations

impl<ID: Debug + Copy + Clone> State<ID>[src]

pub fn new(param: Param<ID>) -> Self[src]

Creates a new ModRangeInput state.

It expects:

  • a Param to assign to this widget

Trait Implementations

impl<ID: Clone + Debug + Copy> Clone for State<ID>[src]

impl<ID: Copy + Debug + Clone> Copy for State<ID>[src]

impl<ID: Debug + Copy + Clone> Debug for State<ID>[src]

Auto Trait Implementations

impl<ID> RefUnwindSafe for State<ID> where
    ID: RefUnwindSafe

impl<ID> Send for State<ID> where
    ID: Send

impl<ID> Sync for State<ID> where
    ID: Sync

impl<ID> Unpin for State<ID> where
    ID: Unpin

impl<ID> UnwindSafe for State<ID> where
    ID: UnwindSafe

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