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, }