[−][src]Struct cubeb_core::ContextRef
Methods
impl ContextRef
[src]
pub unsafe fn from_ptr<'a>(ptr: *mut cubeb) -> &'a Self
[src]
pub unsafe fn from_ptr_mut<'a>(ptr: *mut cubeb) -> &'a mut Self
[src]
pub fn as_ptr(&self) -> *mut cubeb
[src]
impl ContextRef
[src]
pub fn backend_id(&self) -> &str
[src]
pub fn backend_id_bytes(&self) -> &[u8]
[src]
pub fn max_channel_count(&self) -> Result<u32>
[src]
pub fn min_latency(&self, params: &StreamParamsRef) -> Result<u32>
[src]
pub fn preferred_sample_rate(&self) -> Result<u32>
[src]
pub unsafe fn stream_init(
&self,
stream_name: Option<&CStr>,
input_device: DeviceId,
input_stream_params: Option<&StreamParamsRef>,
output_device: DeviceId,
output_stream_params: Option<&StreamParamsRef>,
latency_frames: u32,
data_callback: cubeb_data_callback,
state_callback: cubeb_state_callback,
user_ptr: *mut c_void
) -> Result<Stream>
[src]
&self,
stream_name: Option<&CStr>,
input_device: DeviceId,
input_stream_params: Option<&StreamParamsRef>,
output_device: DeviceId,
output_stream_params: Option<&StreamParamsRef>,
latency_frames: u32,
data_callback: cubeb_data_callback,
state_callback: cubeb_state_callback,
user_ptr: *mut c_void
) -> Result<Stream>
pub fn enumerate_devices(&self, devtype: DeviceType) -> Result<DeviceCollection>
[src]
pub unsafe fn register_device_collection_changed(
&self,
devtype: DeviceType,
callback: cubeb_device_collection_changed_callback,
user_ptr: *mut c_void
) -> Result<()>
[src]
&self,
devtype: DeviceType,
callback: cubeb_device_collection_changed_callback,
user_ptr: *mut c_void
) -> Result<()>
Trait Implementations
impl AsRef<ContextRef> for Context
[src]
fn as_ref(&self) -> &ContextRef
[src]
impl Debug for ContextRef
[src]
impl Borrow<ContextRef> for Context
[src]
fn borrow(&self) -> &ContextRef
[src]
Auto Trait Implementations
impl Send for ContextRef
impl Unpin for ContextRef
impl !Sync for ContextRef
impl UnwindSafe for ContextRef
impl !RefUnwindSafe for ContextRef
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,