tranquility 0.0.8

A Rust library for the Reddit API.
Documentation
//! Contains the user's subreddit model.

use serde::{Deserialize, Serialize};

/// A subreddit that is part of the user's profile.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct UserSubreddit {
    /// The description of the subreddit.
    pub description: String,
}