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

Required Methods§

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

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

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

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

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

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

fn GetByPartName( &self, partname: Option<&IOpcPartUri>, ) -> Result<IXpsOMRemoteDictionaryResource>

Object Safety§

This trait is not object safe.

Implementors§