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