[][src]Struct iced_audio::IntParam

pub struct IntParam { /* fields omitted */ }

A parameter that defines a discrete linear range of i32 values

Methods

impl IntParam[src]

pub fn new(id: u32, min: i32, max: i32, value: i32, default_value: i32) -> Self[src]

Creates a new IntParam

Arguments

  • id - an identifier for the parameter (must be unique!)
  • min - the minimum of the range (inclusive)
  • max - the maximum of the range (inclusive)
  • value - the initial value of the parameter (if value falls outside the range given by min and max, then min or max will be used instead)
  • value - the default value of the parameter (if default_value falls outside the range given by min and max, then min or max will be used instead)

Panics

This will panic if max <= min

pub fn set_from_value(&mut self, value: i32)[src]

Sets the parameter's value to value

If value falls outside the range given by min and max from IntParam::new(), then min or max will be used instead.

Value to Normal calculactions will not be recalculated if the value has not changed.

pub fn set_from_normal(&mut self, normal: Normal)[src]

Sets the parameter's value from a Normal

The parameter's resulting Normal will be calculated from the resulting parameter's value rounded to the nearest integer.

Example

use iced_audio::{Param, IntParam, Normal};

// id: 0, min: 0, max: 2, value: 1, default_value: 1
let mut param = IntParam::new(0, 0, 2, 1, 1);
param.set_from_normal((0.8).into());

assert_eq!(param.value(), 2);
assert_eq!(param.normal().value(), 1.0);

pub fn value(&self) -> i32[src]

Returns the parameter's value

pub fn default_value(&self) -> i32[src]

Returns the parameter's default value

Trait Implementations

impl Clone for IntParam[src]

impl Copy for IntParam[src]

impl Debug for IntParam[src]

impl Param for IntParam[src]

impl PartialEq<IntParam> for IntParam[src]

impl StructuralPartialEq for IntParam[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>,