Struct IDxcCompilerArgs_Vtbl
#[repr(C)]pub struct IDxcCompilerArgs_Vtbl {
pub base__: IUnknown_Vtbl,
pub GetArguments: unsafe extern "system" fn(_: *mut c_void) -> *mut PCWSTR,
pub GetCount: unsafe extern "system" fn(_: *mut c_void) -> u32,
pub AddArguments: unsafe extern "system" fn(_: *mut c_void, _: *const PCWSTR, _: u32) -> HRESULT,
pub AddArgumentsUTF8: unsafe extern "system" fn(_: *mut c_void, _: *const PCSTR, _: u32) -> HRESULT,
pub AddDefines: unsafe extern "system" fn(_: *mut c_void, _: *const DxcDefine, _: u32) -> HRESULT,
}
Fields§
§base__: IUnknown_Vtbl
§GetArguments: unsafe extern "system" fn(_: *mut c_void) -> *mut PCWSTR
§GetCount: unsafe extern "system" fn(_: *mut c_void) -> u32
§AddArguments: unsafe extern "system" fn(_: *mut c_void, _: *const PCWSTR, _: u32) -> HRESULT
§AddArgumentsUTF8: unsafe extern "system" fn(_: *mut c_void, _: *const PCSTR, _: u32) -> HRESULT
§AddDefines: unsafe extern "system" fn(_: *mut c_void, _: *const DxcDefine, _: u32) -> HRESULT
Implementations§
§impl IDxcCompilerArgs_Vtbl
impl IDxcCompilerArgs_Vtbl
pub const fn new<Identity: IDxcCompilerArgs_Impl, const OFFSET: isize>() -> Self
pub fn matches(iid: &GUID) -> bool
Auto Trait Implementations§
impl Freeze for IDxcCompilerArgs_Vtbl
impl RefUnwindSafe for IDxcCompilerArgs_Vtbl
impl Send for IDxcCompilerArgs_Vtbl
impl Sync for IDxcCompilerArgs_Vtbl
impl Unpin for IDxcCompilerArgs_Vtbl
impl UnwindSafe for IDxcCompilerArgs_Vtbl
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