pub trait ITocEntryList_Impl: Sized {
    // Required methods
    fn GetEntryCount(&self, pdwentrycount: *mut u32) -> Result<()>;
    fn GetEntryByIndex(&self, dwentryindex: u32) -> Result<ITocEntry>;
    fn AddEntry(
        &self,
        pentry: Option<&ITocEntry>,
        pdwentryindex: *mut u32
    ) -> Result<()>;
    fn AddEntryByIndex(
        &self,
        dwentryindex: u32,
        pentry: Option<&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: Option<&ITocEntry>, pdwentryindex: *mut u32 ) -> Result<()>

fn AddEntryByIndex( &self, dwentryindex: u32, pentry: Option<&ITocEntry> ) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§