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