Struct fmod::ReverbProperties

source ·
#[repr(C)]
pub struct ReverbProperties { pub decay_time: c_float, pub early_delay: c_float, pub late_delay: c_float, pub hf_reference: c_float, pub hf_decay_ratio: c_float, pub diffusion: c_float, pub density: c_float, pub low_shelf_frequency: c_float, pub low_shelf_gain: c_float, pub high_cut: c_float, pub early_late_mix: c_float, pub wet_level: c_float, }

Fields§

§decay_time: c_float§early_delay: c_float§late_delay: c_float§hf_reference: c_float§hf_decay_ratio: c_float§diffusion: c_float§density: c_float§low_shelf_frequency: c_float§low_shelf_gain: c_float§high_cut: c_float§early_late_mix: c_float§wet_level: c_float

Implementations§

source§

impl ReverbProperties

source

pub const OFF: Self = _

source

pub const GENERIC: Self = _

source

pub const PADDEDCELL: Self = _

source

pub const ROOM: Self = _

source

pub const BATHROOM: Self = _

source

pub const LIVINGROOM: Self = _

source

pub const STONEROOM: Self = _

source

pub const AUDITORIUM: Self = _

source

pub const CONCERTHALL: Self = _

source

pub const CAVE: Self = _

source

pub const ARENA: Self = _

source

pub const HANGAR: Self = _

source

pub const CARPETTEDHALLWAY: Self = _

source

pub const HALLWAY: Self = _

source

pub const STONECORRIDOR: Self = _

source

pub const ALLEY: Self = _

source

pub const FOREST: Self = _

source

pub const CITY: Self = _

source

pub const MOUNTAINS: Self = _

source

pub const QUARRY: Self = _

source

pub const PLAIN: Self = _

source

pub const PARKINGLOT: Self = _

source

pub const SEWERPIPE: Self = _

source

pub const UNDERWATER: Self = _

Trait Implementations§

source§

impl Clone for ReverbProperties

source§

fn clone(&self) -> ReverbProperties

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 ReverbProperties

source§

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

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

impl Default for ReverbProperties

source§

fn default() -> ReverbProperties

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

impl From<FMOD_REVERB_PROPERTIES> for ReverbProperties

source§

fn from(value: FMOD_REVERB_PROPERTIES) -> Self

Converts to this type from the input type.
source§

impl From<ReverbProperties> for FMOD_REVERB_PROPERTIES

source§

fn from(value: ReverbProperties) -> Self

Converts to this type from the input type.
source§

impl PartialEq for ReverbProperties

source§

fn eq(&self, other: &ReverbProperties) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for ReverbProperties

source§

fn partial_cmp(&self, other: &ReverbProperties) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Copy for ReverbProperties

source§

impl StructuralPartialEq for ReverbProperties

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> Shareable for T
where T: Send + Sync + 'static,