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