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