//! Meta,
//! making resource completely able to be operated
usecrate::{attr::Attr,status::Status};/// Making resource has the complete metadata needed
/// This is an auto trait for `T: Attr + Status + Send + Sync`.
/// See [`Attr`] and [`Status`].
pubtraitMeta: Attr + Status + Send + Sync {}impl<T: Attr + Status +Send+Sync> Meta forT{}