Trait IEnumCERTVIEWCOLUMN_Impl
pub trait IEnumCERTVIEWCOLUMN_Impl: IDispatch_Impl {
// Required methods
fn Next(&self, pindex: *mut i32) -> Result<()>;
fn GetName(&self, pstrout: *mut BSTR) -> Result<()>;
fn GetDisplayName(&self, pstrout: *mut BSTR) -> Result<()>;
fn GetType(&self, ptype: *mut i32) -> Result<()>;
fn IsIndexed(&self, pindexed: *mut i32) -> Result<()>;
fn GetMaxLength(&self, pmaxlength: *mut i32) -> Result<()>;
fn GetValue(
&self,
flags: ENUM_CERT_COLUMN_VALUE_FLAGS,
pvarvalue: *mut VARIANT,
) -> Result<()>;
fn Skip(&self, celt: i32) -> Result<()>;
fn Reset(&self) -> Result<()>;
fn Clone(&self) -> Result<IEnumCERTVIEWCOLUMN>;
}
Required Methods§
fn Next(&self, pindex: *mut i32) -> Result<()>
fn GetName(&self, pstrout: *mut BSTR) -> Result<()>
fn GetDisplayName(&self, pstrout: *mut BSTR) -> Result<()>
fn GetType(&self, ptype: *mut i32) -> Result<()>
fn IsIndexed(&self, pindexed: *mut i32) -> Result<()>
fn GetMaxLength(&self, pmaxlength: *mut i32) -> Result<()>
fn GetValue( &self, flags: ENUM_CERT_COLUMN_VALUE_FLAGS, pvarvalue: *mut VARIANT, ) -> Result<()>
fn Skip(&self, celt: i32) -> Result<()>
fn Reset(&self) -> Result<()>
fn Clone(&self) -> Result<IEnumCERTVIEWCOLUMN>
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.