Trait ISchema_Impl
pub trait ISchema_Impl: ISchemaItem_Impl {
// Required methods
fn targetNamespace(&self) -> Result<BSTR>;
fn version(&self) -> Result<BSTR>;
fn types(&self) -> Result<ISchemaItemCollection>;
fn elements(&self) -> Result<ISchemaItemCollection>;
fn attributes(&self) -> Result<ISchemaItemCollection>;
fn attributeGroups(&self) -> Result<ISchemaItemCollection>;
fn modelGroups(&self) -> Result<ISchemaItemCollection>;
fn notations(&self) -> Result<ISchemaItemCollection>;
fn schemaLocations(&self) -> Result<ISchemaStringCollection>;
}
Required Methods§
fn targetNamespace(&self) -> Result<BSTR>
fn version(&self) -> Result<BSTR>
fn types(&self) -> Result<ISchemaItemCollection>
fn elements(&self) -> Result<ISchemaItemCollection>
fn attributes(&self) -> Result<ISchemaItemCollection>
fn attributeGroups(&self) -> Result<ISchemaItemCollection>
fn modelGroups(&self) -> Result<ISchemaItemCollection>
fn notations(&self) -> Result<ISchemaItemCollection>
fn schemaLocations(&self) -> Result<ISchemaStringCollection>
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.