windows::Win32::Storage::Xps

Trait IXpsOMTileBrush_Impl

pub trait IXpsOMTileBrush_Impl: IXpsOMBrush_Impl {
    // Required methods
    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, key: &PCWSTR) -> Result<()>;
    fn GetViewbox(&self) -> Result<XPS_RECT>;
    fn SetViewbox(&self, viewbox: *const XPS_RECT) -> Result<()>;
    fn GetViewport(&self) -> Result<XPS_RECT>;
    fn SetViewport(&self, viewport: *const XPS_RECT) -> Result<()>;
    fn GetTileMode(&self) -> Result<XPS_TILE_MODE>;
    fn SetTileMode(&self, tilemode: XPS_TILE_MODE) -> Result<()>;
}

Required Methods§

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, key: &PCWSTR) -> Result<()>

fn GetViewbox(&self) -> Result<XPS_RECT>

fn SetViewbox(&self, viewbox: *const XPS_RECT) -> Result<()>

fn GetViewport(&self) -> Result<XPS_RECT>

fn SetViewport(&self, viewport: *const XPS_RECT) -> Result<()>

fn GetTileMode(&self) -> Result<XPS_TILE_MODE>

fn SetTileMode(&self, tilemode: XPS_TILE_MODE) -> 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.

Implementors§