pub struct Sound<'a> {
pub id: CharacterId,
pub format: SoundFormat,
pub num_samples: u32,
pub data: &'a [u8],
}Fields§
§id: CharacterId§format: SoundFormat§num_samples: u32§data: &'a [u8]Trait Implementations§
impl<'a> Eq for Sound<'a>
impl<'a> StructuralPartialEq for Sound<'a>
Auto Trait Implementations§
impl<'a> Freeze for Sound<'a>
impl<'a> RefUnwindSafe for Sound<'a>
impl<'a> Send for Sound<'a>
impl<'a> Sync for Sound<'a>
impl<'a> Unpin for Sound<'a>
impl<'a> UnwindSafe for Sound<'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