pub trait ISchemaAttribute_Impl: Sized + ISchemaItem_Impl {
// Required methods
fn type(&self) -> Result<ISchemaType>;
fn scope(&self) -> Result<ISchemaComplexType>;
fn defaultValue(&self) -> Result<BSTR>;
fn fixedValue(&self) -> Result<BSTR>;
fn use(&self) -> Result<SCHEMAUSE>;
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 use(&self) -> Result<SCHEMAUSE>
fn isReference(&self) -> Result<VARIANT_BOOL>
Object Safety§
This trait is not object safe.