pub struct ListJoinRequestsRequest;Expand description
Endpoint marker for the chat.bsky.group.listJoinRequests query.
Path: /xrpc/chat.bsky.group.listJoinRequests. The request payload type is ListJoinRequests<S>; send that request with jacquard::Client or use this marker through lower-level XrpcEndpoint APIs.
Trait Implementations§
Source§impl XrpcEndpoint for ListJoinRequestsRequest
impl XrpcEndpoint for ListJoinRequestsRequest
Source§const PATH: &'static str = "/xrpc/chat.bsky.group.listJoinRequests"
const PATH: &'static str = "/xrpc/chat.bsky.group.listJoinRequests"
Fully-qualified path (‘/xrpc/[nsid]’) where this endpoint should live on the server
Source§const METHOD: XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query
const METHOD: XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query
XRPC method (query/GET or procedure/POST)
Source§type Request<S: BosStr> = ListJoinRequests<S>
type Request<S: BosStr> = ListJoinRequests<S>
XRPC Request data type
Source§type Response = ListJoinRequestsResponse
type Response = ListJoinRequestsResponse
XRPC Response data type
Auto Trait Implementations§
impl Freeze for ListJoinRequestsRequest
impl RefUnwindSafe for ListJoinRequestsRequest
impl Send for ListJoinRequestsRequest
impl Sync for ListJoinRequestsRequest
impl Unpin for ListJoinRequestsRequest
impl UnsafeUnpin for ListJoinRequestsRequest
impl UnwindSafe for ListJoinRequestsRequest
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