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