pub struct SetGameScoreParams {
pub user_id: i64,
pub score: i64,
pub force: bool,
pub disable_edit_message: bool,
pub chat_id: Option<i64>,
pub message_id: Option<i64>,
pub inline_message_id: Option<String>,
}Fields§
§user_id: i64§score: i64§force: bool§disable_edit_message: bool§chat_id: Option<i64>§message_id: Option<i64>§inline_message_id: Option<String>Trait Implementations§
Source§impl Clone for SetGameScoreParams
impl Clone for SetGameScoreParams
Source§fn clone(&self) -> SetGameScoreParams
fn clone(&self) -> SetGameScoreParams
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 moreSource§impl Debug for SetGameScoreParams
impl Debug for SetGameScoreParams
Auto Trait Implementations§
impl Freeze for SetGameScoreParams
impl RefUnwindSafe for SetGameScoreParams
impl Send for SetGameScoreParams
impl Sync for SetGameScoreParams
impl Unpin for SetGameScoreParams
impl UnsafeUnpin for SetGameScoreParams
impl UnwindSafe for SetGameScoreParams
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