//! Contains the user's subreddit model.
useserde::{Deserialize, Serialize};/// A subreddit that is part of the user's profile.
#[derive(Debug, Clone, Serialize, Deserialize)]pubstructUserSubreddit{/// The description of the subreddit.
pubdescription: String,
}