pub trait MaybeHasPosition {
    // Required method
    fn try_pos(&self) -> Option<Position>;
}

Required Methods§

source

fn try_pos(&self) -> Option<Position>

Position of the object, or None if the object is a power creep not spawned on the current shard.

Implementors§