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