windows::Win32::Graphics::Direct3D::Dxc

Trait IDxcLinker_Impl

pub trait IDxcLinker_Impl: IUnknownImpl {
    // Required methods
    fn RegisterLibrary(
        &self,
        plibname: &PCWSTR,
        plib: Ref<'_, IDxcBlob>,
    ) -> Result<()>;
    fn Link(
        &self,
        pentryname: &PCWSTR,
        ptargetprofile: &PCWSTR,
        plibnames: *const PCWSTR,
        libcount: u32,
        parguments: *const PCWSTR,
        argcount: u32,
    ) -> Result<IDxcOperationResult>;
}

Required Methods§

fn RegisterLibrary( &self, plibname: &PCWSTR, plib: Ref<'_, IDxcBlob>, ) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§