pub trait IndividualParents {
// Required method
fn get_slice(&self) -> &[IndividualId];
}Expand description
Abstraction of individual parents.
This trait exists to streamline the API of
TableCollection::add_individual
and
TableCollection::add_individual_with_metadata.
Required Methods§
fn get_slice(&self) -> &[IndividualId]
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".