pub struct RemovePlayerFriendRequestParams {
pub player_id: String,
pub sender_id: String,
}Expand description
struct for passing parameters to the method remove_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 RemovePlayerFriendRequestParams
impl Clone for RemovePlayerFriendRequestParams
Source§fn clone(&self) -> RemovePlayerFriendRequestParams
fn clone(&self) -> RemovePlayerFriendRequestParams
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 RemovePlayerFriendRequestParams
impl RefUnwindSafe for RemovePlayerFriendRequestParams
impl Send for RemovePlayerFriendRequestParams
impl Sync for RemovePlayerFriendRequestParams
impl Unpin for RemovePlayerFriendRequestParams
impl UnsafeUnpin for RemovePlayerFriendRequestParams
impl UnwindSafe for RemovePlayerFriendRequestParams
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