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

Required Methods§

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

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

fn InsertAt(&self, index: u32, parturi: Option<&IOpcPartUri>) -> Result<()>

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

fn SetAt(&self, index: u32, parturi: Option<&IOpcPartUri>) -> Result<()>

fn Append(&self, parturi: Option<&IOpcPartUri>) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§