fav_core 0.1.4

Fav's core crate; A collection of traits.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Meta,
//! making resource completely able to be operated

use crate::{attr::Attr, status::Status};

/// Making resource has the complete metadata needed
/// This is an auto trait for `T: Attr + Status`.
/// See [`Attr`] and [`Status`].
pub trait Meta: Attr + Status {}

impl<T: Attr + Status> Meta for T {}