Enum sc2::data::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]

[src]

Formats the value using the given formatter. Read more

impl Clone for DebugCommand
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<DebugText> for DebugCommand
[src]

[src]

Performs the conversion.

impl From<DebugLine> for DebugCommand
[src]

[src]

Performs the conversion.

impl From<DebugAabb> for DebugCommand
[src]

[src]

Performs the conversion.

impl From<DebugSphere> for DebugCommand
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for DebugCommand

impl Sync for DebugCommand