pub struct Info {Show 14 fields
pub site: Option<Site>,
pub new_active_users: u32,
pub total_users: u32,
pub badges_per_minute: f32,
pub total_badges: u32,
pub total_votes: u32,
pub total_comments: u32,
pub answers_per_minute: f32,
pub questions_per_minute: f32,
pub total_answers: u32,
pub total_accepted: u32,
pub total_unanswered: u32,
pub total_questions: u32,
pub api_revision: String,
}
Expand description
Stack API info object type describes a site in the Stack Exchange network. https://api.stackexchange.com/docs/types/info
Fields§
§site: Option<Site>
§new_active_users: u32
§total_users: u32
§badges_per_minute: f32
§total_badges: u32
§total_votes: u32
§total_comments: u32
§answers_per_minute: f32
§questions_per_minute: f32
§total_answers: u32
§total_accepted: u32
§total_unanswered: u32
§total_questions: u32
§api_revision: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Info
impl<'de> Deserialize<'de> for Info
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 Info
impl RefUnwindSafe for Info
impl Send for Info
impl Sync for Info
impl Unpin for Info
impl UnwindSafe for Info
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