[][src]Struct cubeb_core::ContextRef

pub struct 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]

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]

Trait Implementations

impl AsRef<ContextRef> for Context[src]

impl Debug for ContextRef[src]

impl Borrow<ContextRef> for Context[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]