Trait IXpsOMGeometry_Impl
pub trait IXpsOMGeometry_Impl: IXpsOMShareable_Impl {
// Required methods
fn GetFigures(&self) -> Result<IXpsOMGeometryFigureCollection>;
fn GetFillRule(&self) -> Result<XPS_FILL_RULE>;
fn SetFillRule(&self, fillrule: XPS_FILL_RULE) -> Result<()>;
fn GetTransform(&self) -> Result<IXpsOMMatrixTransform>;
fn GetTransformLocal(&self) -> Result<IXpsOMMatrixTransform>;
fn SetTransformLocal(
&self,
transform: Ref<'_, IXpsOMMatrixTransform>,
) -> Result<()>;
fn GetTransformLookup(&self) -> Result<PWSTR>;
fn SetTransformLookup(&self, lookup: &PCWSTR) -> Result<()>;
fn Clone(&self) -> Result<IXpsOMGeometry>;
}
Required Methods§
fn GetFigures(&self) -> Result<IXpsOMGeometryFigureCollection>
fn GetFillRule(&self) -> Result<XPS_FILL_RULE>
fn SetFillRule(&self, fillrule: XPS_FILL_RULE) -> Result<()>
fn GetTransform(&self) -> Result<IXpsOMMatrixTransform>
fn GetTransformLocal(&self) -> Result<IXpsOMMatrixTransform>
fn SetTransformLocal( &self, transform: Ref<'_, IXpsOMMatrixTransform>, ) -> Result<()>
fn GetTransformLookup(&self) -> Result<PWSTR>
fn SetTransformLookup(&self, lookup: &PCWSTR) -> Result<()>
fn Clone(&self) -> Result<IXpsOMGeometry>
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.