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