pub enum DspResampler {
Default,
NoInterp,
Linear,
Cubic,
Spline,
Max,
}Variants§
Implementations§
Source§impl DspResampler
impl DspResampler
pub fn from(value: FMOD_DSP_RESAMPLER) -> Result<DspResampler, Error>
Trait Implementations§
Source§impl Clone for DspResampler
impl Clone for DspResampler
Source§fn clone(&self) -> DspResampler
fn clone(&self) -> DspResampler
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 DspResampler
impl Debug for DspResampler
Source§impl From<DspResampler> for FMOD_DSP_RESAMPLER
impl From<DspResampler> for FMOD_DSP_RESAMPLER
Source§fn from(value: DspResampler) -> FMOD_DSP_RESAMPLER
fn from(value: DspResampler) -> FMOD_DSP_RESAMPLER
Converts to this type from the input type.
Source§impl PartialEq for DspResampler
impl PartialEq for DspResampler
impl Copy for DspResampler
impl StructuralPartialEq for DspResampler
Auto Trait Implementations§
impl Freeze for DspResampler
impl RefUnwindSafe for DspResampler
impl Send for DspResampler
impl Sync for DspResampler
impl Unpin for DspResampler
impl UnwindSafe for DspResampler
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