pub trait GroupOverviewable {
// Required method
fn group_overview(
&self,
group: &Group,
truncate_details: Option<usize>,
) -> OverviewResult<GroupOverview>;
}Required Methods§
fn group_overview( &self, group: &Group, truncate_details: Option<usize>, ) -> OverviewResult<GroupOverview>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".