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