Struct screeps_api::endpoints::my_info::MyInfo
[−]
[src]
pub struct MyInfo {
pub user_id: String,
pub username: String,
pub has_password: bool,
pub cpu: i32,
pub gcl_points: u64,
pub credits: f64,
pub shard_allocations: Option<CpuShardAllocations>,
// some fields omitted
}Result of a call to get the information for the logged in user.
Fields
user_id: String
Unique user ID referring to this user.
username: String
Unique username referring to this user.
has_password: bool
Whether or not a password can be used to login for this user.
cpu: i32
This user's current CPU allowance.
gcl_points: u64
This user's current total count of GCL points (perform calculation to find actual gcl level).
credits: f64
This user's current credit balance.
Information on per-shard allocation. Unavailable on non-sharded servers.
Trait Implementations
impl Clone for MyInfo[src]
fn clone(&self) -> MyInfo[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