pub trait IPartsList_Impl: Sized {
    // Required methods
    fn GetCount(&self) -> Result<u32>;
    fn GetPart(&self, nindex: u32) -> Result<IPart>;
}

Required Methods§

fn GetCount(&self) -> Result<u32>

fn GetPart(&self, nindex: u32) -> Result<IPart>

Object Safety§

This trait is not object safe.

Implementors§