pub struct SearchPostsRequest;Expand description
Endpoint marker for the app.bsky.feed.searchPosts query.
Path: /xrpc/app.bsky.feed.searchPosts. The request payload type is SearchPosts<S>; send that request with jacquard::Client or use this marker through lower-level XrpcEndpoint APIs.
Trait Implementations§
Source§impl XrpcEndpoint for SearchPostsRequest
impl XrpcEndpoint for SearchPostsRequest
Source§const PATH: &'static str = "/xrpc/app.bsky.feed.searchPosts"
const PATH: &'static str = "/xrpc/app.bsky.feed.searchPosts"
Fully-qualified path (‘/xrpc/[nsid]’) where this endpoint should live on the server
Source§const METHOD: XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query
const METHOD: XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query
XRPC method (query/GET or procedure/POST)
Source§type Request<S: BosStr> = SearchPosts<S>
type Request<S: BosStr> = SearchPosts<S>
XRPC Request data type
Source§type Response = SearchPostsResponse
type Response = SearchPostsResponse
XRPC Response data type
Auto Trait Implementations§
impl Freeze for SearchPostsRequest
impl RefUnwindSafe for SearchPostsRequest
impl Send for SearchPostsRequest
impl Sync for SearchPostsRequest
impl Unpin for SearchPostsRequest
impl UnsafeUnpin for SearchPostsRequest
impl UnwindSafe for SearchPostsRequest
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