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

Unique user ID referring to this user.

Unique username referring to this user.

Whether or not a password can be used to login for this user.

This user's current CPU allowance.

This user's current total count of GCL points (perform calculation to find actual gcl level).

This user's current credit balance.

Information on per-shard allocation. Unavailable on non-sharded servers.

Trait Implementations

impl Clone for MyInfo
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for MyInfo
[src]

[src]

Formats the value using the given formatter.