Struct voicemeeter::interface::callback::data::output::ReadDevices
source · pub struct ReadDevices<'a, 'b> {
pub output_a1: DeviceBuffer<[&'b [f32]; 8]>,
pub output_a2: DeviceBuffer<[&'b [f32]; 8]>,
pub output_a3: DeviceBuffer<[&'b [f32]; 8]>,
pub output_a4: DeviceBuffer<[&'b [f32]; 8]>,
pub output_a5: DeviceBuffer<[&'b [f32]; 8]>,
pub virtual_output_b1: DeviceBuffer<[&'b [f32]; 8]>,
pub virtual_output_b2: DeviceBuffer<[&'b [f32]; 8]>,
pub virtual_output_b3: DeviceBuffer<[&'b [f32]; 8]>,
/* private fields */
}
Available on crate feature
interface
only.Expand description
Read interface for output mode
Fields§
§output_a1: DeviceBuffer<[&'b [f32]; 8]>
§output_a2: DeviceBuffer<[&'b [f32]; 8]>
§output_a3: DeviceBuffer<[&'b [f32]; 8]>
§output_a4: DeviceBuffer<[&'b [f32]; 8]>
§output_a5: DeviceBuffer<[&'b [f32]; 8]>
§virtual_output_b1: DeviceBuffer<[&'b [f32]; 8]>
Channel read buffer for VirtualOutputB1
.
Is None
if the device is not available.
virtual_output_b2: DeviceBuffer<[&'b [f32]; 8]>
Channel read buffer for VirtualOutputB2
.
Is None
if the device is not available.
virtual_output_b3: DeviceBuffer<[&'b [f32]; 8]>
Channel read buffer for VirtualOutputB3
.
Is None
if the device is not available.
Implementations§
source§impl<'a, 'b> ReadDevices<'a, 'b>
impl<'a, 'b> ReadDevices<'a, 'b>
sourcepub fn device(&'a self, device: &Device) -> DeviceBuffer<&'a [&'b [f32]]>
pub fn device(&'a self, device: &Device) -> DeviceBuffer<&'a [&'b [f32]]>
Grab the device buffer for a specific device
Trait Implementations§
source§impl<'a, 'b> Default for ReadDevices<'a, 'b>
impl<'a, 'b> Default for ReadDevices<'a, 'b>
source§fn default() -> ReadDevices<'a, 'b>
fn default() -> ReadDevices<'a, 'b>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a, 'b> RefUnwindSafe for ReadDevices<'a, 'b>
impl<'a, 'b> Send for ReadDevices<'a, 'b>
impl<'a, 'b> Sync for ReadDevices<'a, 'b>
impl<'a, 'b> Unpin for ReadDevices<'a, 'b>
impl<'a, 'b> UnwindSafe for ReadDevices<'a, 'b>
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