pub trait IIterableConcept_Impl: Sized {
    // Required methods
    fn GetDefaultIndexDimensionality(
        &self,
        contextobject: Option<&IModelObject>,
    ) -> Result<u64>;
    fn GetIterator(
        &self,
        contextobject: Option<&IModelObject>,
    ) -> Result<IModelIterator>;
}

Required Methods§

fn GetDefaultIndexDimensionality( &self, contextobject: Option<&IModelObject>, ) -> Result<u64>

fn GetIterator( &self, contextobject: Option<&IModelObject>, ) -> Result<IModelIterator>

Object Safety§

This trait is not object safe.

Implementors§