pub trait IItemNameLimits_Impl: Sized {
    // Required methods
    fn GetValidCharacters(
        &self,
        ppwszvalidchars: *mut PWSTR,
        ppwszinvalidchars: *mut PWSTR
    ) -> Result<()>;
    fn GetMaxLength(&self, pszname: &PCWSTR) -> Result<i32>;
}

Required Methods§

fn GetValidCharacters( &self, ppwszvalidchars: *mut PWSTR, ppwszinvalidchars: *mut PWSTR ) -> Result<()>

fn GetMaxLength(&self, pszname: &PCWSTR) -> Result<i32>

Object Safety§

This trait is not object safe.

Implementors§