Trait windows::Win32::Storage::Xps::IXpsOMDocumentCollection_Impl
pub trait IXpsOMDocumentCollection_Impl: Sized {
// Required methods
fn GetCount(&self) -> Result<u32>;
fn GetAt(&self, index: u32) -> Result<IXpsOMDocument>;
fn InsertAt(
&self,
index: u32,
document: Option<&IXpsOMDocument>,
) -> Result<()>;
fn RemoveAt(&self, index: u32) -> Result<()>;
fn SetAt(&self, index: u32, document: Option<&IXpsOMDocument>) -> Result<()>;
fn Append(&self, document: Option<&IXpsOMDocument>) -> Result<()>;
}
Required Methods§
fn GetCount(&self) -> Result<u32>
fn GetAt(&self, index: u32) -> Result<IXpsOMDocument>
fn InsertAt(&self, index: u32, document: Option<&IXpsOMDocument>) -> Result<()>
fn RemoveAt(&self, index: u32) -> Result<()>
fn SetAt(&self, index: u32, document: Option<&IXpsOMDocument>) -> Result<()>
fn Append(&self, document: Option<&IXpsOMDocument>) -> Result<()>
Object Safety§
This trait is not object safe.