ruvolt 0.5.0

An API wrapper for Revolt written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::Deserialize;

use crate::models::Id;

/// A bot information.
#[derive(Debug, Deserialize, Clone, PartialEq)]
pub struct BotInformation {
    /// Bot owner id.
    #[serde(rename = "owner")]
    pub owner_id: Id,
}