pub struct CCAssetDiscordServer {
pub url: Option<String>,
pub name: Option<String>,
pub total_members: Option<i32>,
pub total_closed_pull_requests: Option<i32>,
pub premium_subscribers: Option<i32>,
}
Fields§
§url: Option<String>
The URL of the Discord server used to retrieve social metrics.
name: Option<String>
The name of the Discord server.
total_members: Option<i32>
The total number of users/members in this Discord server.
total_closed_pull_requests: Option<i32>
The number of online users in this Discord server.
The number of premium subscribers in this Discord server.
Trait Implementations§
Source§impl Debug for CCAssetDiscordServer
impl Debug for CCAssetDiscordServer
Source§impl<'de> Deserialize<'de> for CCAssetDiscordServer
impl<'de> Deserialize<'de> for CCAssetDiscordServer
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CCAssetDiscordServer
impl RefUnwindSafe for CCAssetDiscordServer
impl Send for CCAssetDiscordServer
impl Sync for CCAssetDiscordServer
impl Unpin for CCAssetDiscordServer
impl UnwindSafe for CCAssetDiscordServer
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more