arts-n-crafts 0.1.3

Arts and Crafts was a reaction against the industrialization and excess of the Victorian era, and it sought to celebrate traditional craftsmanship and materials. Arts and Crafts architecture is characterized by a simple and functional design, the use of natural materials, and a focus on craftsmanship.
Documentation
1
2
3
4
use serde::Serialize;

pub trait BasePayload: Serialize + Send + Sync + Clone {}
impl<T> BasePayload for T where T: Serialize + Send + Sync + Clone {}