Trait ITocEntryList_Impl
pub trait ITocEntryList_Impl: IUnknownImpl {
// Required methods
fn GetEntryCount(&self, pdwentrycount: *mut u32) -> Result<()>;
fn GetEntryByIndex(&self, dwentryindex: u32) -> Result<ITocEntry>;
fn AddEntry(
&self,
pentry: Ref<'_, ITocEntry>,
pdwentryindex: *mut u32,
) -> Result<()>;
fn AddEntryByIndex(
&self,
dwentryindex: u32,
pentry: Ref<'_, ITocEntry>,
) -> Result<()>;
fn RemoveEntryByIndex(&self, dwentryindex: u32) -> Result<()>;
}
Required Methods§
fn GetEntryCount(&self, pdwentrycount: *mut u32) -> Result<()>
fn GetEntryByIndex(&self, dwentryindex: u32) -> Result<ITocEntry>
fn AddEntry( &self, pentry: Ref<'_, ITocEntry>, pdwentryindex: *mut u32, ) -> Result<()>
fn AddEntryByIndex( &self, dwentryindex: u32, pentry: Ref<'_, ITocEntry>, ) -> Result<()>
fn RemoveEntryByIndex(&self, dwentryindex: u32) -> 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.