#[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 FILECLOSEPROC§length_handle: *mut FILELENPROC§read_handle: *mut FILEREADPROC§seek_handle: *mut FILESEEKPROCImplementations§
Source§impl 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§
Source§impl Clone for BassFileProcs
impl Clone for BassFileProcs
Source§fn clone(&self) -> BassFileProcs
fn clone(&self) -> BassFileProcs
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BassFileProcs
impl RefUnwindSafe for BassFileProcs
impl !Send for BassFileProcs
impl !Sync for BassFileProcs
impl Unpin for BassFileProcs
impl UnwindSafe for BassFileProcs
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