pub trait IndicesInGroup: EntityDomain {
// Required methods
fn indices_in_group<'a>(
label: &'static str,
graphrecord: &'a GraphRecord,
group: &Group,
) -> QueryResult<GrHashSet<Self::Index<'a>>>;
fn group_size(stats: &Stats<'_>, group: &Group) -> usize;
}Required Methods§
fn indices_in_group<'a>( label: &'static str, graphrecord: &'a GraphRecord, group: &Group, ) -> QueryResult<GrHashSet<Self::Index<'a>>>
fn group_size(stats: &Stats<'_>, group: &Group) -> usize
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".