spectacles-model 0.1.97

Discord types and structures for Spectacles.rs.
Documentation
1
2
3
4
5
6
7
8
9
10
# spectacles-model
A collection of data types for working with various Spectacles modules.

## Usage
All of the structs and enums support (de)serialization using serde-json. An example would be the following:

```rust
use spectacles_model::guild::Guild;
let guild: Guild = <JSONVariableHere>;
```