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

Trait IDxcContainerBuilder_Impl

pub trait IDxcContainerBuilder_Impl: IUnknownImpl {
    // Required methods
    fn Load(&self, pdxilcontainerheader: Ref<'_, IDxcBlob>) -> Result<()>;
    fn AddPart(&self, fourcc: u32, psource: Ref<'_, IDxcBlob>) -> Result<()>;
    fn RemovePart(&self, fourcc: u32) -> Result<()>;
    fn SerializeContainer(&self) -> Result<IDxcOperationResult>;
}

Required Methods§

fn Load(&self, pdxilcontainerheader: Ref<'_, IDxcBlob>) -> Result<()>

fn AddPart(&self, fourcc: u32, psource: Ref<'_, IDxcBlob>) -> Result<()>

fn RemovePart(&self, fourcc: u32) -> Result<()>

fn SerializeContainer(&self) -> Result<IDxcOperationResult>

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§