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