pub struct WithdrawJoinRequestRequest;Expand description
Endpoint marker for the chat.bsky.group.withdrawJoinRequest procedure.
Path: /xrpc/chat.bsky.group.withdrawJoinRequest. The request payload type is WithdrawJoinRequest<S>; send that request with jacquard::Client or use this marker through lower-level XrpcEndpoint APIs.
Trait Implementations§
Source§impl XrpcEndpoint for WithdrawJoinRequestRequest
impl XrpcEndpoint for WithdrawJoinRequestRequest
Source§const PATH: &'static str = "/xrpc/chat.bsky.group.withdrawJoinRequest"
const PATH: &'static str = "/xrpc/chat.bsky.group.withdrawJoinRequest"
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> = WithdrawJoinRequest<S>
type Request<S: BosStr> = WithdrawJoinRequest<S>
XRPC Request data type
Source§type Response = WithdrawJoinRequestResponse
type Response = WithdrawJoinRequestResponse
XRPC Response data type
Auto Trait Implementations§
impl Freeze for WithdrawJoinRequestRequest
impl RefUnwindSafe for WithdrawJoinRequestRequest
impl Send for WithdrawJoinRequestRequest
impl Sync for WithdrawJoinRequestRequest
impl Unpin for WithdrawJoinRequestRequest
impl UnsafeUnpin for WithdrawJoinRequestRequest
impl UnwindSafe for WithdrawJoinRequestRequest
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