pub struct StandardAI<'a> {
pub auto_stop_claim_meld: FxHashSet<PlayerId>,
pub can_draw_round: bool,
pub can_pass_turn: bool,
pub dealer_order_deterministic: Option<bool>,
pub draw_tile_for_real_player: bool,
pub game: &'a mut Game,
pub shuffle_players: bool,
pub sort_on_draw: bool,
pub sort_on_initial_draw: bool,
pub with_dead_wall: bool,
/* private fields */
}
Fields§
§auto_stop_claim_meld: FxHashSet<PlayerId>
§can_draw_round: bool
§can_pass_turn: bool
§dealer_order_deterministic: Option<bool>
§draw_tile_for_real_player: bool
§game: &'a mut Game
§shuffle_players: bool
§sort_on_draw: bool
§sort_on_initial_draw: bool
§with_dead_wall: bool
Implementations§
source§impl<'a> StandardAI<'a>
impl<'a> StandardAI<'a>
source§impl<'a> StandardAI<'a>
impl<'a> StandardAI<'a>
pub fn get_is_after_discard(&self) -> bool
source§impl<'a> StandardAI<'a>
impl<'a> StandardAI<'a>
pub fn new( game: &'a mut Game, ai_players: FxHashSet<PlayerId>, auto_stop_claim_meld: FxHashSet<PlayerId>, ) -> Self
pub fn play_action(&mut self, with_metadata: bool) -> PlayActionResult
Auto Trait Implementations§
impl<'a> Freeze for StandardAI<'a>
impl<'a> RefUnwindSafe for StandardAI<'a>
impl<'a> Send for StandardAI<'a>
impl<'a> Sync for StandardAI<'a>
impl<'a> Unpin for StandardAI<'a>
impl<'a> !UnwindSafe for StandardAI<'a>
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