use super::{ExclusiveRelation, Relation};
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct ChildOf;
impl Relation for ChildOf {
const EXCLUSIVE: bool = true;
const OWNED: bool = true;
const SYMMETRIC: bool = false;
}
impl ExclusiveRelation for ChildOf {}