roux 2.2.15

Simple and (a)synchronous Reddit API wrapper
Documentation
1
2
3
4
5
6
7
8
//! # Inbox Responses
use serde::Deserialize;
/// The response from an add friend request
#[derive(Debug, Deserialize)]
pub struct Friend {
    /// Was the friend request a success
    pub success: bool,
}