pub struct SteamVoiceData<'a> {
pub steam_id: u64,
/* private fields */
}Expand description
A light-parsed voice data wrapper
Each bit of voice data contains two or three smaller packets
- The sample rate
- A number of silence samples since the last voice data
- The opus voice data
Fields§
§steam_id: u64Implementations§
Source§impl<'a> SteamVoiceData<'a>
impl<'a> SteamVoiceData<'a>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for SteamVoiceData<'a>
impl<'a> RefUnwindSafe for SteamVoiceData<'a>
impl<'a> Send for SteamVoiceData<'a>
impl<'a> Sync for SteamVoiceData<'a>
impl<'a> Unpin for SteamVoiceData<'a>
impl<'a> UnwindSafe for SteamVoiceData<'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