dep-obj 0.38.4

Dependency object: effective reactive heterogeneous container.
Documentation
use core::fmt::Debug;

/// A type should satisfy this trait to be a dependency property type,
/// a dependency vector item type, or a flow data type.
pub trait Convenient: PartialEq + Clone + Debug + 'static { }

impl<T: PartialEq + Clone + Debug + 'static> Convenient for T { }