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