pub enum ElementType {
Show 13 variants
VendorSpecific,
ConnectionPoint,
Gain,
AutomaticGainControl,
AutomaticGainLimiter,
Dynamics,
Mute,
Delay,
Equalizer,
SampleRateConversion,
Endpoint,
RingBuffer,
DaiInterconnect,
// some variants omitted
}
Variants§
VendorSpecific
Vendor Specific. A type of processing element not covered by any subsequent type definition.
ConnectionPoint
Controls pipelines channel mixing and routing.
Gain
Gain control, a.k.a. Volume control.
AutomaticGainControl
Automatic Gain Control. Automatically maintains a suitable signal level regardless of variation of its input.
AutomaticGainLimiter
Automatic Gain Limiter. Automatically maintains a signal level below a level specified. Input below the level is unaffected, and peaks above the level are attenuated.
Dynamics
Alters the dynamic range of the signal, e.g. dynamic range compression.
Mute
Mute.
Delay
Delay.
Equalizer
Equalizer.
SampleRateConversion
Sample Rate Conversion.
Endpoint
The start/end of a pipeline.
RingBuffer
Ring Buffer. This is the first of two types of elements that can start/end processing pipelines.
DaiInterconnect
Digital Audio Interface Interconnect. This is the second of two types of elements that can start/end processing pipelines.
Implementations§
Source§impl ElementType
impl ElementType
pub fn from_primitive(prim: u32) -> Option<Self>
pub fn from_primitive_allow_unknown(prim: u32) -> Self
pub fn unknown() -> Self
pub const fn into_primitive(self) -> u32
pub fn is_unknown(&self) -> bool
Trait Implementations§
Source§impl Clone for ElementType
impl Clone for ElementType
Source§fn clone(&self) -> ElementType
fn clone(&self) -> ElementType
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ElementType
impl Debug for ElementType
Source§impl<D: ResourceDialect> Decode<ElementType, D> for ElementType
impl<D: ResourceDialect> Decode<ElementType, D> for ElementType
Source§impl<D: ResourceDialect> Encode<ElementType, D> for ElementType
impl<D: ResourceDialect> Encode<ElementType, D> for ElementType
Source§impl Hash for ElementType
impl Hash for ElementType
Source§impl Ord for ElementType
impl Ord for ElementType
Source§fn cmp(&self, other: &ElementType) -> Ordering
fn cmp(&self, other: &ElementType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for ElementType
impl PartialEq for ElementType
Source§impl PartialOrd for ElementType
impl PartialOrd for ElementType
Source§impl TypeMarker for ElementType
impl TypeMarker for ElementType
Source§type Owned = ElementType
type Owned = ElementType
Source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
inline_align
.Source§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read moreSource§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.Source§impl ValueTypeMarker for ElementType
impl ValueTypeMarker for ElementType
Source§type Borrowed<'a> = ElementType
type Borrowed<'a> = ElementType
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read moreimpl Copy for ElementType
impl Eq for ElementType
impl StructuralPartialEq for ElementType
Auto Trait Implementations§
impl Freeze for ElementType
impl RefUnwindSafe for ElementType
impl Send for ElementType
impl Sync for ElementType
impl Unpin for ElementType
impl UnwindSafe for ElementType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)