pub struct ContextRealtimeData { /* private fields */ }Expand description
Fields in AudioContext that change in real-time.
Implementations§
Source§impl ContextRealtimeData
impl ContextRealtimeData
pub fn builder( currentTime: f64, renderCapacity: f64, callbackIntervalMean: f64, callbackIntervalVariance: f64, ) -> ContextRealtimeDataBuilder
pub fn currentTime(&self) -> f64
pub fn renderCapacity(&self) -> f64
pub fn callbackIntervalMean(&self) -> f64
pub fn callbackIntervalVariance(&self) -> f64
Trait Implementations§
Source§impl Clone for ContextRealtimeData
impl Clone for ContextRealtimeData
Source§fn clone(&self) -> ContextRealtimeData
fn clone(&self) -> ContextRealtimeData
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 Debug for ContextRealtimeData
impl Debug for ContextRealtimeData
Source§impl Default for ContextRealtimeData
impl Default for ContextRealtimeData
Source§fn default() -> ContextRealtimeData
fn default() -> ContextRealtimeData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContextRealtimeData
impl<'de> Deserialize<'de> for ContextRealtimeData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ContextRealtimeData
impl RefUnwindSafe for ContextRealtimeData
impl Send for ContextRealtimeData
impl Sync for ContextRealtimeData
impl Unpin for ContextRealtimeData
impl UnsafeUnpin for ContextRealtimeData
impl UnwindSafe for ContextRealtimeData
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