windows::Win32::System::ClrHosting

Trait ITypeNameBuilder_Impl

pub trait ITypeNameBuilder_Impl: IUnknownImpl {
    // Required methods
    fn OpenGenericArguments(&self) -> Result<()>;
    fn CloseGenericArguments(&self) -> Result<()>;
    fn OpenGenericArgument(&self) -> Result<()>;
    fn CloseGenericArgument(&self) -> Result<()>;
    fn AddName(&self, szname: &PCWSTR) -> Result<()>;
    fn AddPointer(&self) -> Result<()>;
    fn AddByRef(&self) -> Result<()>;
    fn AddSzArray(&self) -> Result<()>;
    fn AddArray(&self, rank: u32) -> Result<()>;
    fn AddAssemblySpec(&self, szassemblyspec: &PCWSTR) -> Result<()>;
    fn ToString(&self) -> Result<BSTR>;
    fn Clear(&self) -> Result<()>;
}

Required Methods§

fn OpenGenericArguments(&self) -> Result<()>

fn CloseGenericArguments(&self) -> Result<()>

fn OpenGenericArgument(&self) -> Result<()>

fn CloseGenericArgument(&self) -> Result<()>

fn AddName(&self, szname: &PCWSTR) -> Result<()>

fn AddPointer(&self) -> Result<()>

fn AddByRef(&self) -> Result<()>

fn AddSzArray(&self) -> Result<()>

fn AddArray(&self, rank: u32) -> Result<()>

fn AddAssemblySpec(&self, szassemblyspec: &PCWSTR) -> Result<()>

fn ToString(&self) -> Result<BSTR>

fn Clear(&self) -> 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§