1// Marker trait for all types which are supported as TripleStore properties. 2pub trait Property: Clone + std::fmt::Debug + PartialEq {} 3impl<T: Clone + std::fmt::Debug + PartialEq> Property for T {}