#[repr(C)]pub struct IDirect3DResource9Vtbl {
pub parent: IUnknownVtbl,
pub GetDevice: unsafe extern "system" fn(This: *mut IDirect3DResource9, ppDevice: *mut *mut IDirect3DDevice9) -> HRESULT,
pub SetPrivateData: unsafe extern "system" fn(This: *mut IDirect3DResource9, refguid: *const GUID, pData: *const VOID, SizeOfData: DWORD, Flags: DWORD) -> HRESULT,
pub GetPrivateData: unsafe extern "system" fn(This: *mut IDirect3DResource9, refguid: *const GUID, pData: *mut VOID, pSizeOfData: *mut DWORD) -> HRESULT,
pub FreePrivateData: unsafe extern "system" fn(This: *mut IDirect3DResource9, refguid: *const GUID) -> HRESULT,
pub SetPriority: unsafe extern "system" fn(This: *mut IDirect3DResource9, PriorityNew: DWORD) -> DWORD,
pub GetPriority: unsafe extern "system" fn(This: *mut IDirect3DResource9) -> DWORD,
pub PreLoad: unsafe extern "system" fn(This: *mut IDirect3DResource9),
pub GetType: unsafe extern "system" fn(This: *mut IDirect3DResource9) -> D3DRESOURCETYPE,
}
Fields§
§parent: IUnknownVtbl
§GetDevice: unsafe extern "system" fn(This: *mut IDirect3DResource9, ppDevice: *mut *mut IDirect3DDevice9) -> HRESULT
§SetPrivateData: unsafe extern "system" fn(This: *mut IDirect3DResource9, refguid: *const GUID, pData: *const VOID, SizeOfData: DWORD, Flags: DWORD) -> HRESULT
§GetPrivateData: unsafe extern "system" fn(This: *mut IDirect3DResource9, refguid: *const GUID, pData: *mut VOID, pSizeOfData: *mut DWORD) -> HRESULT
§FreePrivateData: unsafe extern "system" fn(This: *mut IDirect3DResource9, refguid: *const GUID) -> HRESULT
§SetPriority: unsafe extern "system" fn(This: *mut IDirect3DResource9, PriorityNew: DWORD) -> DWORD
§GetPriority: unsafe extern "system" fn(This: *mut IDirect3DResource9) -> DWORD
§PreLoad: unsafe extern "system" fn(This: *mut IDirect3DResource9)
§GetType: unsafe extern "system" fn(This: *mut IDirect3DResource9) -> D3DRESOURCETYPE
Auto Trait Implementations§
impl Freeze for IDirect3DResource9Vtbl
impl RefUnwindSafe for IDirect3DResource9Vtbl
impl Send for IDirect3DResource9Vtbl
impl Sync for IDirect3DResource9Vtbl
impl Unpin for IDirect3DResource9Vtbl
impl UnwindSafe for IDirect3DResource9Vtbl
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