Trait ISchemaElement_Impl
pub trait ISchemaElement_Impl: ISchemaParticle_Impl {
// Required methods
fn type(&self) -> Result<ISchemaType>;
fn scope(&self) -> Result<ISchemaComplexType>;
fn defaultValue(&self) -> Result<BSTR>;
fn fixedValue(&self) -> Result<BSTR>;
fn isNillable(&self) -> Result<VARIANT_BOOL>;
fn identityConstraints(&self) -> Result<ISchemaItemCollection>;
fn substitutionGroup(&self) -> Result<ISchemaElement>;
fn substitutionGroupExclusions(&self) -> Result<SCHEMADERIVATIONMETHOD>;
fn disallowedSubstitutions(&self) -> Result<SCHEMADERIVATIONMETHOD>;
fn isAbstract(&self) -> Result<VARIANT_BOOL>;
fn isReference(&self) -> Result<VARIANT_BOOL>;
}
Required Methods§
fn type(&self) -> Result<ISchemaType>
fn scope(&self) -> Result<ISchemaComplexType>
fn defaultValue(&self) -> Result<BSTR>
fn fixedValue(&self) -> Result<BSTR>
fn isNillable(&self) -> Result<VARIANT_BOOL>
fn identityConstraints(&self) -> Result<ISchemaItemCollection>
fn substitutionGroup(&self) -> Result<ISchemaElement>
fn substitutionGroupExclusions(&self) -> Result<SCHEMADERIVATIONMETHOD>
fn disallowedSubstitutions(&self) -> Result<SCHEMADERIVATIONMETHOD>
fn isAbstract(&self) -> Result<VARIANT_BOOL>
fn isReference(&self) -> Result<VARIANT_BOOL>
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.