pub struct GroupInfoXml {Show 16 fields
pub id: SteamID,
pub name: String,
pub url: String,
pub headline: Option<String>,
pub summary: Option<String>,
pub avatar_hash: String,
pub member_count: u32,
pub member_detail_count: u32,
pub members_in_chat: u32,
pub members_in_game: u32,
pub members_online: u32,
pub total_pages: u32,
pub current_page: u32,
pub starting_member: u32,
pub next_page_link: Option<String>,
pub members: Vec<SteamID>,
}Expand description
Group information from XML API (memberslistxml endpoint).
Fields§
§id: SteamIDGroup SteamID.
name: StringGroup name.
url: StringGroup vanity URL.
headline: Option<String>Group headline/tagline.
summary: Option<String>Group summary.
avatar_hash: StringAvatar hash.
member_count: u32Total member count.
member_detail_count: u32Detailed member count.
members_in_chat: u32Members in chat.
members_in_game: u32Members in game.
members_online: u32Members online.
total_pages: u32Total pages of members.
current_page: u32Current page number.
starting_member: u32Starting member index.
next_page_link: Option<String>Link to next page (if any).
members: Vec<SteamID>List of member SteamIDs on this page.
Trait Implementations§
Source§impl Clone for GroupInfoXml
impl Clone for GroupInfoXml
Source§fn clone(&self) -> GroupInfoXml
fn clone(&self) -> GroupInfoXml
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GroupInfoXml
impl Debug for GroupInfoXml
Source§impl<'de> Deserialize<'de> for GroupInfoXml
impl<'de> Deserialize<'de> for GroupInfoXml
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 GroupInfoXml
impl RefUnwindSafe for GroupInfoXml
impl Send for GroupInfoXml
impl Sync for GroupInfoXml
impl Unpin for GroupInfoXml
impl UnsafeUnpin for GroupInfoXml
impl UnwindSafe for GroupInfoXml
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more