pub struct AudioPreselection<'a> {
pub num_preselections: u8,
pub preselection_loop: &'a [u8],
}Expand description
audio_preselection body (Table 110); preselection_loop is the raw remainder.
Fields§
§num_preselections: u8num_preselections(5).
preselection_loop: &'a [u8]Raw preselection loop.
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> 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>
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