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