reddit-rs 0.1.1

A wrapper around the Reddit API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};

use iri_string::types::IriString;

#[derive(Debug, Clone, Deserialize, Serialize, PartialEq)]
pub struct Vimeo {
    pub title: String,
    pub description: String,
    pub author_name: String,
    pub author_url: IriString,
}