pub struct UpdatePlayerByIdParams {
pub player_id: String,
pub update_player_by_id_request: UpdatePlayerByIdRequest,
}Expand description
struct for passing parameters to the method update_player_by_id
Fields§
§player_id: StringThe unique identifier of the player.
update_player_by_id_request: UpdatePlayerByIdRequestTrait Implementations§
Source§impl Clone for UpdatePlayerByIdParams
impl Clone for UpdatePlayerByIdParams
Source§fn clone(&self) -> UpdatePlayerByIdParams
fn clone(&self) -> UpdatePlayerByIdParams
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 UpdatePlayerByIdParams
impl RefUnwindSafe for UpdatePlayerByIdParams
impl Send for UpdatePlayerByIdParams
impl Sync for UpdatePlayerByIdParams
impl Unpin for UpdatePlayerByIdParams
impl UnsafeUnpin for UpdatePlayerByIdParams
impl UnwindSafe for UpdatePlayerByIdParams
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