#[repr(C)]pub struct DSFXCompressor {
pub fGain: f32,
pub fAttack: f32,
pub fRelease: f32,
pub fThreshold: f32,
pub fRatio: f32,
pub fPredelay: f32,
}Fields§
§fGain: f32§fAttack: f32§fRelease: f32§fThreshold: f32§fRatio: f32§fPredelay: f32Trait Implementations§
Source§impl Abi for DSFXCompressor
impl Abi for DSFXCompressor
Source§type Abi = DSFXCompressor
type Abi = DSFXCompressor
The abi representation of the implementing type. Read more
Source§fn set_abi(&mut self) -> *mut Self::Abi
fn set_abi(&mut self) -> *mut Self::Abi
Returns a pointer for setting the object’s value via an ABI call.
Source§unsafe fn from_abi(abi: Self::Abi) -> Result<Self, Error>
unsafe fn from_abi(abi: Self::Abi) -> Result<Self, Error>
Casts the ABI representation to a Rust object by taking ownership of the bits.
fn drop_param(_: &mut Param<'_, Self>)
Source§impl Clone for DSFXCompressor
impl Clone for DSFXCompressor
Source§fn clone(&self) -> DSFXCompressor
fn clone(&self) -> DSFXCompressor
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DSFXCompressor
impl Debug for DSFXCompressor
Source§impl Default for DSFXCompressor
impl Default for DSFXCompressor
Source§impl PartialEq for DSFXCompressor
impl PartialEq for DSFXCompressor
impl Copy for DSFXCompressor
impl Eq for DSFXCompressor
Auto Trait Implementations§
impl Freeze for DSFXCompressor
impl RefUnwindSafe for DSFXCompressor
impl Send for DSFXCompressor
impl Sync for DSFXCompressor
impl Unpin for DSFXCompressor
impl UnwindSafe for DSFXCompressor
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more