pub struct LlGame {
pub formula: String,
pub player: String,
pub opponent: String,
pub winning_condition: String,
}Expand description
Game semantics: a game G = (moves, positions, plays).
Fields§
§formula: String§player: String§opponent: String§winning_condition: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LlGame
impl RefUnwindSafe for LlGame
impl Send for LlGame
impl Sync for LlGame
impl Unpin for LlGame
impl UnsafeUnpin for LlGame
impl UnwindSafe for LlGame
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