Trait openal::Device [] [src]

pub unsafe trait Device {
    fn as_ptr(&self) -> *const ALCdevice;

    fn as_mut_ptr(&mut self) -> *mut ALCdevice { ... }
}

Internal trait specifying the type is an OpenAL device.

Required Methods

Return a *const pointer for the device.

Provided Methods

Return a *mut pointer for the device.

Implementors