windows::Win32::Storage::Xps

Trait IXpsOMDashCollection_Impl

pub trait IXpsOMDashCollection_Impl: IUnknownImpl {
    // Required methods
    fn GetCount(&self) -> Result<u32>;
    fn GetAt(&self, index: u32) -> Result<XPS_DASH>;
    fn InsertAt(&self, index: u32, dash: *const XPS_DASH) -> Result<()>;
    fn RemoveAt(&self, index: u32) -> Result<()>;
    fn SetAt(&self, index: u32, dash: *const XPS_DASH) -> Result<()>;
    fn Append(&self, dash: *const XPS_DASH) -> Result<()>;
}

Required Methods§

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

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

fn InsertAt(&self, index: u32, dash: *const XPS_DASH) -> Result<()>

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

fn SetAt(&self, index: u32, dash: *const XPS_DASH) -> Result<()>

fn Append(&self, dash: *const XPS_DASH) -> 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§