Trait IXpsOMPartUriCollection_Impl
pub trait IXpsOMPartUriCollection_Impl: IUnknownImpl {
// Required methods
fn GetCount(&self) -> Result<u32>;
fn GetAt(&self, index: u32) -> Result<IOpcPartUri>;
fn InsertAt(&self, index: u32, parturi: Ref<'_, IOpcPartUri>) -> Result<()>;
fn RemoveAt(&self, index: u32) -> Result<()>;
fn SetAt(&self, index: u32, parturi: Ref<'_, IOpcPartUri>) -> Result<()>;
fn Append(&self, parturi: Ref<'_, IOpcPartUri>) -> Result<()>;
}
Required Methods§
fn GetCount(&self) -> Result<u32>
fn GetAt(&self, index: u32) -> Result<IOpcPartUri>
fn InsertAt(&self, index: u32, parturi: Ref<'_, IOpcPartUri>) -> Result<()>
fn RemoveAt(&self, index: u32) -> Result<()>
fn SetAt(&self, index: u32, parturi: Ref<'_, IOpcPartUri>) -> Result<()>
fn Append(&self, parturi: Ref<'_, IOpcPartUri>) -> 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.