pub struct AudioPreselection<'a> {
pub preselections: Vec<Preselection<'a>>,
}Expand description
audio_preselection body (Table 110, §6.4.1). The preselection loop is unfolded.
Fields§
§preselections: Vec<Preselection<'a>>Preselection entries (num_preselections is their count).
Trait Implementations§
Source§impl<'a> Clone for AudioPreselection<'a>
impl<'a> Clone for AudioPreselection<'a>
Source§fn clone(&self) -> AudioPreselection<'a>
fn clone(&self) -> AudioPreselection<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for AudioPreselection<'a>
impl<'a> Debug for AudioPreselection<'a>
impl<'a> Eq for AudioPreselection<'a>
Source§impl<'a> ExtensionBodyDef<'a> for AudioPreselection<'a>
impl<'a> ExtensionBodyDef<'a> for AudioPreselection<'a>
Source§impl<'a> Parse<'a> for AudioPreselection<'a>
impl<'a> Parse<'a> for AudioPreselection<'a>
Source§impl<'a> PartialEq for AudioPreselection<'a>
impl<'a> PartialEq for AudioPreselection<'a>
Source§fn eq(&self, other: &AudioPreselection<'a>) -> bool
fn eq(&self, other: &AudioPreselection<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for AudioPreselection<'a>
impl<'a> Serialize for AudioPreselection<'a>
Source§impl Serialize for AudioPreselection<'_>
impl Serialize for AudioPreselection<'_>
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl<'a> StructuralPartialEq for AudioPreselection<'a>
Source§impl<'a> Yokeable<'a> for AudioPreselection<'static>
impl<'a> Yokeable<'a> for AudioPreselection<'static>
Source§type Output = AudioPreselection<'a>
type Output = AudioPreselection<'a>
This type MUST be
Self with the 'static replaced with 'a, i.e. Self<'a>Source§fn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
Auto Trait Implementations§
impl<'a> Freeze for AudioPreselection<'a>
impl<'a> RefUnwindSafe for AudioPreselection<'a>
impl<'a> Send for AudioPreselection<'a>
impl<'a> Sync for AudioPreselection<'a>
impl<'a> Unpin for AudioPreselection<'a>
impl<'a> UnsafeUnpin for AudioPreselection<'a>
impl<'a> UnwindSafe for AudioPreselection<'a>
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