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