pub trait ITocCollection_Impl: Sized {
    // Required methods
    fn GetEntryCount(&self, pdwentrycount: *mut u32) -> Result<()>;
    fn GetEntryByIndex(&self, dwentryindex: u32) -> Result<IToc>;
    fn AddEntry(
        &self,
        ptoc: Option<&IToc>,
        pdwentryindex: *mut u32
    ) -> Result<()>;
    fn AddEntryByIndex(
        &self,
        dwentryindex: u32,
        ptoc: Option<&IToc>
    ) -> Result<()>;
    fn RemoveEntryByIndex(&self, dwentryindex: u32) -> Result<()>;
}

Required Methods§

fn GetEntryCount(&self, pdwentrycount: *mut u32) -> Result<()>

fn GetEntryByIndex(&self, dwentryindex: u32) -> Result<IToc>

fn AddEntry(&self, ptoc: Option<&IToc>, pdwentryindex: *mut u32) -> Result<()>

fn AddEntryByIndex(&self, dwentryindex: u32, ptoc: Option<&IToc>) -> Result<()>

fn RemoveEntryByIndex(&self, dwentryindex: u32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§