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