param 0.1.2

Param-style trait
Documentation
1
2
3
4
5
6
7
8
9
# Param

Param-style traits. Helpful in decoupling specific struct definitions.

```rust
pub trait Param<T> {
    fn param(&self) -> T;
}
```