1
2
3
4
5
6
7
8
9
use core::hash::Hash;

use super::{Habitat, MathsCore};

#[allow(clippy::module_name_repetitions)]
pub trait LineageReference<M: MathsCore, H: Habitat<M>>:
    crate::cogs::Backup + PartialEq + Eq + Hash + core::fmt::Debug
{
}