Struct autd3_core::configuration::Configuration [−][src]
pub struct Configuration { /* fields omitted */ }
Expand description
Configuration of modulation
Implementations
impl Configuration
[src]
impl Configuration
[src]pub fn new(mod_smpl_freq_div: u16, mod_buf_size: u16) -> Self
[src]
pub fn new(mod_smpl_freq_div: u16, mod_buf_size: u16) -> Self
[src]Construct configuration
Modulation is sampled and repeated from a buffer of size mod_buf_size
at a sampling rate of MOD_SAMPLING_FREQ_BASE/mod_smpl_freq_div
.
Arguments
mod_smpl_freq_div
- Modulation sampling frequency divisionmod_buf_size
- Modulation buffer size
pub fn mod_sampling_frequency(&self) -> f64
[src]
pub fn mod_sampling_frequency(&self) -> f64
[src]Return MOD_SAMPLING_FREQ_BASE/mod_smpl_freq_div
pub fn mod_sampling_frequency_division(&self) -> u16
[src]
pub fn mod_buf_size(&self) -> u16
[src]
Trait Implementations
impl Clone for Configuration
[src]
impl Clone for Configuration
[src]fn clone(&self) -> Configuration
[src]
fn clone(&self) -> Configuration
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Default for Configuration
[src]
impl Default for Configuration
[src]impl Copy for Configuration
[src]
Auto Trait Implementations
impl RefUnwindSafe for Configuration
impl Send for Configuration
impl Sync for Configuration
impl Unpin for Configuration
impl UnwindSafe for Configuration
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
type Output = T
Should always be Self
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
pub fn to_subset(&self) -> Option<SS>
pub fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct self
from the equivalent element of its
superset. Read more
pub fn is_in_subset(&self) -> bool
pub fn is_in_subset(&self) -> bool
Checks if self
is actually part of its subset T
(and can be converted to it).
pub fn to_subset_unchecked(&self) -> SS
pub fn to_subset_unchecked(&self) -> SS
Use with care! Same as self.to_subset
but without any property checks. Always succeeds.
pub fn from_subset(element: &SS) -> SP
pub fn from_subset(element: &SS) -> SP
The inclusion map: converts self
to the equivalent element of its superset.
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more