Trait IRegistrationInfo_Impl
pub trait IRegistrationInfo_Impl: IDispatch_Impl {
Show 18 methods
// Required methods
fn Description(&self, pdescription: *mut BSTR) -> Result<()>;
fn SetDescription(&self, description: &BSTR) -> Result<()>;
fn Author(&self, pauthor: *mut BSTR) -> Result<()>;
fn SetAuthor(&self, author: &BSTR) -> Result<()>;
fn Version(&self, pversion: *mut BSTR) -> Result<()>;
fn SetVersion(&self, version: &BSTR) -> Result<()>;
fn Date(&self, pdate: *mut BSTR) -> Result<()>;
fn SetDate(&self, date: &BSTR) -> Result<()>;
fn Documentation(&self, pdocumentation: *mut BSTR) -> Result<()>;
fn SetDocumentation(&self, documentation: &BSTR) -> Result<()>;
fn XmlText(&self, ptext: *mut BSTR) -> Result<()>;
fn SetXmlText(&self, text: &BSTR) -> Result<()>;
fn URI(&self, puri: *mut BSTR) -> Result<()>;
fn SetURI(&self, uri: &BSTR) -> Result<()>;
fn SecurityDescriptor(&self, psddl: *mut VARIANT) -> Result<()>;
fn SetSecurityDescriptor(&self, sddl: &VARIANT) -> Result<()>;
fn Source(&self, psource: *mut BSTR) -> Result<()>;
fn SetSource(&self, source: &BSTR) -> Result<()>;
}
Required Methods§
fn Description(&self, pdescription: *mut BSTR) -> Result<()>
fn SetDescription(&self, description: &BSTR) -> Result<()>
fn Author(&self, pauthor: *mut BSTR) -> Result<()>
fn SetAuthor(&self, author: &BSTR) -> Result<()>
fn Version(&self, pversion: *mut BSTR) -> Result<()>
fn SetVersion(&self, version: &BSTR) -> Result<()>
fn Date(&self, pdate: *mut BSTR) -> Result<()>
fn SetDate(&self, date: &BSTR) -> Result<()>
fn Documentation(&self, pdocumentation: *mut BSTR) -> Result<()>
fn SetDocumentation(&self, documentation: &BSTR) -> Result<()>
fn XmlText(&self, ptext: *mut BSTR) -> Result<()>
fn SetXmlText(&self, text: &BSTR) -> Result<()>
fn URI(&self, puri: *mut BSTR) -> Result<()>
fn SetURI(&self, uri: &BSTR) -> Result<()>
fn SecurityDescriptor(&self, psddl: *mut VARIANT) -> Result<()>
fn SetSecurityDescriptor(&self, sddl: &VARIANT) -> Result<()>
fn Source(&self, psource: *mut BSTR) -> Result<()>
fn SetSource(&self, source: &BSTR) -> 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.