pub struct HhBasicParameters { /* private fields */ }
Expand description

Parameters for the HhBasic machine.

Implementations§

source§

impl HhBasicParameters

source

pub fn set_lev(&mut self, lev: usize) -> Result<(), RytmError>

Sets the lev parameter.

Range: 0..=127

source

pub fn plock_set_lev( &self, lev: usize, trig_index: usize ) -> Result<(), RytmError>

Sets the parameter lock for the lev parameter.

Range: 0..=127

source

pub fn plock_get_lev( &self, trig_index: usize ) -> Result<Option<usize>, RytmError>

Gets the parameter lock for the lev parameter.

Range: 0..=127

source

pub fn plock_clear_lev(&self, trig_index: usize) -> Result<(), RytmError>

Clears the parameter lock for the lev parameter if set.

source§

impl HhBasicParameters

source

pub const fn get_lev(&self) -> usize

Gets the lev parameter.

Range: 0..=127

source§

impl HhBasicParameters

source

pub fn set_tun(&mut self, tun: isize) -> Result<(), RytmError>

Sets the tun parameter.

Range: -64..=63

source

pub fn plock_set_tun( &self, tun: isize, trig_index: usize ) -> Result<(), RytmError>

Sets the parameter lock for the tun parameter.

Range: -64..=63

source

pub fn plock_get_tun( &self, trig_index: usize ) -> Result<Option<isize>, RytmError>

Gets the parameter lock for the tun parameter.

Range: -64..=63

source

pub fn plock_clear_tun(&self, trig_index: usize) -> Result<(), RytmError>

Clears the parameter lock for the tun parameter if set.

source§

impl HhBasicParameters

source

pub const fn get_tun(&self) -> isize

Gets the tun parameter.

Range: -64..=63

source§

impl HhBasicParameters

source

pub fn set_dec(&mut self, dec: usize) -> Result<(), RytmError>

Sets the dec parameter.

Range: 0..=127

source

pub fn plock_set_dec( &self, dec: usize, trig_index: usize ) -> Result<(), RytmError>

Sets the parameter lock for the dec parameter.

Range: 0..=127

source

pub fn plock_get_dec( &self, trig_index: usize ) -> Result<Option<usize>, RytmError>

Gets the parameter lock for the dec parameter.

Range: 0..=127

source

pub fn plock_clear_dec(&self, trig_index: usize) -> Result<(), RytmError>

Clears the parameter lock for the dec parameter if set.

source§

impl HhBasicParameters

source

pub const fn get_dec(&self) -> usize

Gets the dec parameter.

Range: 0..=127

source§

impl HhBasicParameters

source

pub fn set_ton(&mut self, ton: isize) -> Result<(), RytmError>

Sets the ton parameter.

Range: -64..=63

source

pub fn plock_set_ton( &self, ton: isize, trig_index: usize ) -> Result<(), RytmError>

Sets the parameter lock for the ton parameter.

Range: -64..=63

source

pub fn plock_get_ton( &self, trig_index: usize ) -> Result<Option<isize>, RytmError>

Gets the parameter lock for the ton parameter.

Range: -64..=63

source

pub fn plock_clear_ton(&self, trig_index: usize) -> Result<(), RytmError>

Clears the parameter lock for the ton parameter if set.

source§

impl HhBasicParameters

source

pub const fn get_ton(&self) -> isize

Gets the ton parameter.

Range: -64..=63

source§

impl HhBasicParameters

source

pub fn set_trd(&mut self, trd: usize) -> Result<(), RytmError>

Sets the trd parameter.

Range: 0..=127

source

pub fn plock_set_trd( &self, trd: usize, trig_index: usize ) -> Result<(), RytmError>

Sets the parameter lock for the trd parameter.

Range: 0..=127

source

pub fn plock_get_trd( &self, trig_index: usize ) -> Result<Option<usize>, RytmError>

Gets the parameter lock for the trd parameter.

Range: 0..=127

source

pub fn plock_clear_trd(&self, trig_index: usize) -> Result<(), RytmError>

Clears the parameter lock for the trd parameter if set.

source§

impl HhBasicParameters

source

pub const fn get_trd(&self) -> usize

Gets the trd parameter.

Range: 0..=127

source§

impl HhBasicParameters

source

pub const fn get_rst(&self) -> bool

Returns the rst parameter.

source

pub fn set_rst(&mut self, rst: bool)

Sets the rst parameter.

source

pub fn plock_set_rst( &self, rst: bool, trig_index: usize ) -> Result<(), RytmError>

Sets the parameter lock for the rst parameter.

source

pub fn plock_get_rst( &self, trig_index: usize ) -> Result<Option<bool>, RytmError>

Gets the parameter lock for the rst parameter.

source

pub fn plock_clear_rst(&self, trig_index: usize) -> Result<(), RytmError>

Clears the parameter lock for the rst parameter if set.

Trait Implementations§

source§

impl Clone for HhBasicParameters

source§

fn clone(&self) -> HhBasicParameters

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for HhBasicParameters

source§

fn fmt(&self, __f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for HhBasicParameters

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for HhBasicParameters

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for HhBasicParameters

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,