Trait IX509AttributeClientId_Impl
pub trait IX509AttributeClientId_Impl: IX509Attribute_Impl {
// Required methods
fn InitializeEncode(
&self,
clientid: RequestClientInfoClientId,
strmachinednsname: &BSTR,
strusersamname: &BSTR,
strprocessname: &BSTR,
) -> Result<()>;
fn InitializeDecode(
&self,
encoding: EncodingType,
strencodeddata: &BSTR,
) -> Result<()>;
fn ClientId(&self) -> Result<RequestClientInfoClientId>;
fn MachineDnsName(&self) -> Result<BSTR>;
fn UserSamName(&self) -> Result<BSTR>;
fn ProcessName(&self) -> Result<BSTR>;
}
Required Methods§
fn InitializeEncode( &self, clientid: RequestClientInfoClientId, strmachinednsname: &BSTR, strusersamname: &BSTR, strprocessname: &BSTR, ) -> Result<()>
fn InitializeDecode( &self, encoding: EncodingType, strencodeddata: &BSTR, ) -> Result<()>
fn ClientId(&self) -> Result<RequestClientInfoClientId>
fn MachineDnsName(&self) -> Result<BSTR>
fn UserSamName(&self) -> Result<BSTR>
fn ProcessName(&self) -> Result<BSTR>
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.