pub struct SearchPostsRequest;Expand description
Endpoint type for app.bsky.feed.searchPosts
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<'de> = SearchPosts<'de>
type Request<'de> = SearchPosts<'de>
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 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