pub struct ListPlayerFriendRequestsParams {
pub player_id: String,
pub limit: Option<u8>,
pub cursor: Option<String>,
pub sender_id: Option<String>,
}Expand description
struct for passing parameters to the method list_player_friend_requests
Fields§
§player_id: StringThe unique identifier of the player.
limit: Option<u8>The maximum number of friend requests to return.
cursor: Option<String>The cursor returned by the previous request.
sender_id: Option<String>The unique identifier of the sender used to filter friend requests.
Trait Implementations§
Source§impl Clone for ListPlayerFriendRequestsParams
impl Clone for ListPlayerFriendRequestsParams
Source§fn clone(&self) -> ListPlayerFriendRequestsParams
fn clone(&self) -> ListPlayerFriendRequestsParams
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 ListPlayerFriendRequestsParams
impl RefUnwindSafe for ListPlayerFriendRequestsParams
impl Send for ListPlayerFriendRequestsParams
impl Sync for ListPlayerFriendRequestsParams
impl Unpin for ListPlayerFriendRequestsParams
impl UnsafeUnpin for ListPlayerFriendRequestsParams
impl UnwindSafe for ListPlayerFriendRequestsParams
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