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