Trait windows::Win32::Storage::Xps::IXpsOMVisualCollection_Impl

pub trait IXpsOMVisualCollection_Impl: Sized {
    // Required methods
    fn GetCount(&self) -> Result<u32>;
    fn GetAt(&self, index: u32) -> Result<IXpsOMVisual>;
    fn InsertAt(&self, index: u32, object: Option<&IXpsOMVisual>) -> Result<()>;
    fn RemoveAt(&self, index: u32) -> Result<()>;
    fn SetAt(&self, index: u32, object: Option<&IXpsOMVisual>) -> Result<()>;
    fn Append(&self, object: Option<&IXpsOMVisual>) -> Result<()>;
}

Required Methods§

fn GetCount(&self) -> Result<u32>

fn GetAt(&self, index: u32) -> Result<IXpsOMVisual>

fn InsertAt(&self, index: u32, object: Option<&IXpsOMVisual>) -> Result<()>

fn RemoveAt(&self, index: u32) -> Result<()>

fn SetAt(&self, index: u32, object: Option<&IXpsOMVisual>) -> Result<()>

fn Append(&self, object: Option<&IXpsOMVisual>) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§