pub trait MembersCount {
    // Required method
    fn members_count() -> u32;
}
Expand description

A trait defining an operation to retrieve the count of members.

Required Methods§

source

fn members_count() -> u32

The count of members.

Object Safety§

This trait is not object safe.

Implementors§