smplx-sdk 0.0.3

Simplex sdk to simplify the development with simplicity
Documentation
1
2
3
4
5
6
7
8
use dyn_clone::DynClone;
use simplicityhl::Arguments;

pub trait ArgumentsTrait: DynClone {
    fn build_arguments(&self) -> Arguments;
}

dyn_clone::clone_trait_object!(ArgumentsTrait);