#[repr(u32)]pub enum IPLAudioEffectState {
IPL_AUDIOEFFECTSTATE_TAILREMAINING = 0,
IPL_AUDIOEFFECTSTATE_TAILCOMPLETE = 1,
}Expand description
States that an audio effect can be left in after processing a frame of audio.
Variants§
IPL_AUDIOEFFECTSTATE_TAILREMAINING = 0
One or more samples of tail remain in the effect’s internal buffers.
IPL_AUDIOEFFECTSTATE_TAILCOMPLETE = 1
No tail remains in the effect’s internal buffers.
Trait Implementations§
Source§impl Clone for IPLAudioEffectState
impl Clone for IPLAudioEffectState
Source§fn clone(&self) -> IPLAudioEffectState
fn clone(&self) -> IPLAudioEffectState
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 IPLAudioEffectState
impl Debug for IPLAudioEffectState
Source§impl Hash for IPLAudioEffectState
impl Hash for IPLAudioEffectState
Source§impl PartialEq for IPLAudioEffectState
impl PartialEq for IPLAudioEffectState
impl Copy for IPLAudioEffectState
impl Eq for IPLAudioEffectState
impl StructuralPartialEq for IPLAudioEffectState
Auto Trait Implementations§
impl Freeze for IPLAudioEffectState
impl RefUnwindSafe for IPLAudioEffectState
impl Send for IPLAudioEffectState
impl Sync for IPLAudioEffectState
impl Unpin for IPLAudioEffectState
impl UnwindSafe for IPLAudioEffectState
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