pub struct SearchPostsV2Response;Expand description
Response marker for the app.bsky.feed.searchPostsV2 query.
Implements jacquard_common::xrpc::XrpcResp; successful bodies decode as Self::Output<S>, which is SearchPostsV2Output<S> for this endpoint.
Trait Implementations§
Source§impl XrpcResp for SearchPostsV2Response
impl XrpcResp for SearchPostsV2Response
Source§type Output<S: BosStr> = SearchPostsV2Output<S>
type Output<S: BosStr> = SearchPostsV2Output<S>
Response output type, parameterised on backing string type.
Source§type Err = SearchPostsV2Error
type Err = SearchPostsV2Error
Error type for this request. Always owned (
DeserializeOwned).Source§fn encode_output<S>(output: &Self::Output<S>) -> Result<Vec<u8>, EncodeError>
fn encode_output<S>(output: &Self::Output<S>) -> Result<Vec<u8>, EncodeError>
Encode the response output body. Read more
Source§fn decode_output<'de, S>(
body: &'de [u8],
) -> Result<Self::Output<S>, DecodeError>
fn decode_output<'de, S>( body: &'de [u8], ) -> Result<Self::Output<S>, DecodeError>
Decode the response output body. Read more
Auto Trait Implementations§
impl Freeze for SearchPostsV2Response
impl RefUnwindSafe for SearchPostsV2Response
impl Send for SearchPostsV2Response
impl Sync for SearchPostsV2Response
impl Unpin for SearchPostsV2Response
impl UnsafeUnpin for SearchPostsV2Response
impl UnwindSafe for SearchPostsV2Response
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