pub struct ClanInfo {
pub id: ClanId,
pub name: String,
pub tag: String,
pub level: i32,
pub level_points: i32,
pub registration_time: String,
pub alliance: Option<String>,
pub description: String,
pub leader: String,
pub member_count: i32,
}
Fields§
§id: ClanId
§name: String
§tag: String
§level: i32
§level_points: i32
§registration_time: String
§alliance: Option<String>
§description: String
§leader: String
§member_count: i32
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ClanInfo
impl<'de> Deserialize<'de> for ClanInfo
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 ClanInfo
impl RefUnwindSafe for ClanInfo
impl Send for ClanInfo
impl Sync for ClanInfo
impl Unpin for ClanInfo
impl UnwindSafe for ClanInfo
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