Struct ID3D12FunctionReflection
pub struct ID3D12FunctionReflection(/* private fields */);Implementations§
§impl ID3D12FunctionReflection
impl ID3D12FunctionReflection
pub unsafe fn GetDesc(&self, pdesc: *mut D3D12_FUNCTION_DESC) -> Result<()>
pub unsafe fn GetConstantBufferByIndex( &self, bufferindex: u32, ) -> Option<ID3D12ShaderReflectionConstantBuffer>
pub unsafe fn GetConstantBufferByName<P0>( &self, name: P0, ) -> Option<ID3D12ShaderReflectionConstantBuffer>
pub unsafe fn GetResourceBindingDesc( &self, resourceindex: u32, pdesc: *mut D3D12_SHADER_INPUT_BIND_DESC, ) -> Result<()>
pub unsafe fn GetVariableByName<P0>( &self, name: P0, ) -> Option<ID3D12ShaderReflectionVariable>
pub unsafe fn GetResourceBindingDescByName<P0>( &self, name: P0, pdesc: *mut D3D12_SHADER_INPUT_BIND_DESC, ) -> Result<()>
pub unsafe fn GetFunctionParameter( &self, parameterindex: i32, ) -> Option<ID3D12FunctionParameterReflection>
Trait Implementations§
§impl Clone for ID3D12FunctionReflection
impl Clone for ID3D12FunctionReflection
§impl Debug for ID3D12FunctionReflection
impl Debug for ID3D12FunctionReflection
§impl PartialEq for ID3D12FunctionReflection
impl PartialEq for ID3D12FunctionReflection
§impl Vtable for ID3D12FunctionReflection
impl Vtable for ID3D12FunctionReflection
type Vtable = ID3D12FunctionReflection_Vtbl
Source§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface implementation.Source§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
impl Eq for ID3D12FunctionReflection
impl Send for ID3D12FunctionReflection
impl Sync for ID3D12FunctionReflection
Auto Trait Implementations§
impl Freeze for ID3D12FunctionReflection
impl RefUnwindSafe for ID3D12FunctionReflection
impl Unpin for ID3D12FunctionReflection
impl UnwindSafe for ID3D12FunctionReflection
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