pub trait AggregationIndividual: Schema {
// Required method
fn mapping(&self, path: &MappingPath<'_>) -> Option<&Self::Mapping>;
}Expand description
Access information of an interface with Aggregation individual.
Required Methods§
Sourcefn mapping(&self, path: &MappingPath<'_>) -> Option<&Self::Mapping>
fn mapping(&self, path: &MappingPath<'_>) -> Option<&Self::Mapping>
Returns the mapping with the given path.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".