pub struct FightableGuild {
pub id: u32,
pub name: String,
pub emblem: Emblem,
pub number_of_members: u8,
pub members_min_level: u32,
pub members_max_level: u32,
pub members_average_level: u32,
pub rank: u32,
pub honor: u32,
}Expand description
Contains information about another guild which can be fought.
Must first be fetched by sending Command::GuildGetFightableTargets
Fields§
§id: u32Id of the guild
name: StringName of the guild
emblem: EmblemEmblem of the guild
number_of_members: u8Number of members the guild currently has
members_min_level: u32The lowest level a member of the guild has
members_max_level: u32The highest level a member of the guild has
members_average_level: u32The average level of the guild members
rank: u32The rank of the guild in the hall of fame
honor: u32The amount of honor the guild currently has
Trait Implementations§
Source§impl Clone for FightableGuild
impl Clone for FightableGuild
Source§fn clone(&self) -> FightableGuild
fn clone(&self) -> FightableGuild
Returns a duplicate of the value. Read more
1.0.0 · 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 FightableGuild
impl Debug for FightableGuild
Source§impl Default for FightableGuild
impl Default for FightableGuild
Source§fn default() -> FightableGuild
fn default() -> FightableGuild
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FightableGuild
impl<'de> Deserialize<'de> for FightableGuild
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
Source§impl PartialEq for FightableGuild
impl PartialEq for FightableGuild
Source§impl Serialize for FightableGuild
impl Serialize for FightableGuild
impl StructuralPartialEq for FightableGuild
Auto Trait Implementations§
impl Freeze for FightableGuild
impl RefUnwindSafe for FightableGuild
impl Send for FightableGuild
impl Sync for FightableGuild
impl Unpin for FightableGuild
impl UnwindSafe for FightableGuild
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