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