Enum stpsyr::Action [] [src]

pub enum Action {
    Hold,
    Move {
        to: Province,
        convoyed: bool,
    },
    SupportHold {
        to: Province,
    },
    SupportMove {
        from: Province,
        to: Province,
    },
    Convoy {
        from: Province,
        to: Province,
    },
}

Variants

Fields of Move

Fields of SupportHold

Fields of SupportMove

Fields of Convoy

Trait Implementations

impl Clone for Action
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Action
[src]

Formats the value using the given formatter.