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