Struct screeps_api::endpoints::shards::ShardInfo
[−]
[src]
pub struct ShardInfo { pub name: String, pub room_count: u32, pub user_count: u32, pub tick_avg_milliseconds: f64, // some fields omitted }
Structure describing information about a single game shard.
Fields
name: String
The name of this shard, useful for all shard-specific API calls.
room_count: u32
The total number of open rooms in this shard.
user_count: u32
The total number of users spawned in this shard (TODO: confirm this is what this is).
tick_avg_milliseconds: f64
The average millisecond tick this shard has for some past period of time (TODO: more detail).
Trait Implementations
impl Clone for ShardInfo
[src]
fn clone(&self) -> ShardInfo
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more