pub enum Command {
BuildSquad(BuildSquad),
SelectBattlegroup(SelectBattlegroup),
Unknown(Unknown),
}Expand description
Wrapper for one of many Company of Heroes 3 player commands parsed from a replay file. For details on the specifics of a given command, see the specific enum variants.
Commands are collected during tick parsing and then associated with the Player instance that
sent them. To access, see Player::commands.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Command
impl Send for Command
impl Sync for Command
impl Unpin for Command
impl UnwindSafe for Command
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more