Struct libfmod::Reverb3d

source ·
pub struct Reverb3d { /* private fields */ }

Implementations§

source§

impl Reverb3d

source

pub fn from(pointer: *mut FMOD_REVERB3D) -> Self

source

pub fn as_mut_ptr(&self) -> *mut FMOD_REVERB3D

source

pub fn release(&self) -> Result<(), Error>

source

pub fn set_3d_attributes( &self, position: Option<Vector>, mindistance: f32, maxdistance: f32 ) -> Result<(), Error>

source

pub fn get_3d_attributes(&self) -> Result<(Vector, f32, f32), Error>

source

pub fn set_properties(&self, properties: ReverbProperties) -> Result<(), Error>

source

pub fn get_properties(&self) -> Result<ReverbProperties, Error>

source

pub fn set_active(&self, active: bool) -> Result<(), Error>

source

pub fn get_active(&self) -> Result<bool, Error>

source

pub fn set_user_data(&self, userdata: *mut c_void) -> Result<(), Error>

source

pub fn get_user_data(&self) -> Result<*mut c_void, Error>

Trait Implementations§

source§

impl Clone for Reverb3d

source§

fn clone(&self) -> Reverb3d

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 Reverb3d

source§

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

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

impl Copy for Reverb3d

source§

impl Send for Reverb3d

source§

impl Sync for Reverb3d

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.