Struct bass_sys::BassFileProcs
source · [−]#[repr(C)]pub struct BassFileProcs {
pub close_handle: *mut FILECLOSEPROC,
pub length_handle: *mut FILELENPROC,
pub read_handle: *mut FILEREADPROC,
pub seek_handle: *mut FILESEEKPROC,
}Fields
close_handle: *mut FILECLOSEPROClength_handle: *mut FILELENPROCread_handle: *mut FILEREADPROCseek_handle: *mut FILESEEKPROCImplementations
sourceimpl BassFileProcs
impl BassFileProcs
pub fn new(
close_handle: *mut FILECLOSEPROC,
length_handle: *mut FILELENPROC,
read_handle: *mut FILEREADPROC,
seek_handle: *mut FILESEEKPROC
) -> Self
Trait Implementations
sourceimpl Clone for BassFileProcs
impl Clone for BassFileProcs
sourcefn clone(&self) -> BassFileProcs
fn clone(&self) -> BassFileProcs
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
Auto Trait Implementations
impl RefUnwindSafe for BassFileProcs
impl !Send for BassFileProcs
impl !Sync for BassFileProcs
impl Unpin for BassFileProcs
impl UnwindSafe for BassFileProcs
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more