pub struct ActionHistoryEntry {
pub seat: i64,
pub action: String,
pub amount: Option<i64>,
pub is_timeout: Option<bool>,
}Expand description
One entry from state.action_history. Synthetic blind/ante entries
(post_small_blind, post_big_blind, post_ante) appear here too
— the server generates them; bots do not submit them.
Fields§
§seat: i64§action: String§amount: Option<i64>§is_timeout: Option<bool>Trait Implementations§
Source§impl Clone for ActionHistoryEntry
impl Clone for ActionHistoryEntry
Source§fn clone(&self) -> ActionHistoryEntry
fn clone(&self) -> ActionHistoryEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ActionHistoryEntry
impl RefUnwindSafe for ActionHistoryEntry
impl Send for ActionHistoryEntry
impl Sync for ActionHistoryEntry
impl Unpin for ActionHistoryEntry
impl UnsafeUnpin for ActionHistoryEntry
impl UnwindSafe for ActionHistoryEntry
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