Enum sc2::debug::DebugCommand[][src]

pub enum DebugCommand {
    Text(DebugText),
    Line(DebugLine),
    Aabb(DebugAabb),
    Sphere(DebugSphere),
}

A debug command for the game.

Variants

Shows debug text in the game instance.

Shows a debug line in the game from p1 to p2.

Shows a debug axis-aligned bounding box in the game.

Shows a debug sphere in the game.

Trait Implementations

impl Debug for DebugCommand
[src]

Formats the value using the given formatter. Read more

impl Clone for DebugCommand
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<DebugText> for DebugCommand
[src]

Performs the conversion.

impl From<DebugLine> for DebugCommand
[src]

Performs the conversion.

impl From<DebugAabb> for DebugCommand
[src]

Performs the conversion.

impl From<DebugSphere> for DebugCommand
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for DebugCommand

impl Sync for DebugCommand