pub struct AudioNodeInfo {
pub num_min_supported_inputs: u32,
pub num_max_supported_inputs: u32,
pub num_min_supported_outputs: u32,
pub num_max_supported_outputs: u32,
}Expand description
Additional information about an AudioNode
Fields§
§num_min_supported_inputs: u32The minimum number of input buffers this node supports
num_max_supported_inputs: u32The maximum number of input buffers this node supports
This value must be less than 64.
num_min_supported_outputs: u32The minimum number of output buffers this node supports
num_max_supported_outputs: u32The maximum number of output buffers this node supports
This value must be less than 64.
Trait Implementations§
Source§impl Clone for AudioNodeInfo
impl Clone for AudioNodeInfo
Source§fn clone(&self) -> AudioNodeInfo
fn clone(&self) -> AudioNodeInfo
Returns a copy of the value. Read more
1.0.0 · 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 AudioNodeInfo
impl Debug for AudioNodeInfo
Source§impl PartialEq for AudioNodeInfo
impl PartialEq for AudioNodeInfo
impl Copy for AudioNodeInfo
impl Eq for AudioNodeInfo
impl StructuralPartialEq for AudioNodeInfo
Auto Trait Implementations§
impl Freeze for AudioNodeInfo
impl RefUnwindSafe for AudioNodeInfo
impl Send for AudioNodeInfo
impl Sync for AudioNodeInfo
impl Unpin for AudioNodeInfo
impl UnwindSafe for AudioNodeInfo
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