pub struct GetStatusRequest;Expand description
Endpoint marker for the chat.bsky.actor.getStatus query.
Path: /xrpc/chat.bsky.actor.getStatus. The request payload type is GetStatus; use this marker with lower-level XrpcEndpoint APIs when you need endpoint metadata.
Trait Implementations§
Source§impl XrpcEndpoint for GetStatusRequest
impl XrpcEndpoint for GetStatusRequest
Source§const PATH: &'static str = "/xrpc/chat.bsky.actor.getStatus"
const PATH: &'static str = "/xrpc/chat.bsky.actor.getStatus"
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 = GetStatusResponse
type Response = GetStatusResponse
XRPC Response data type
Auto Trait Implementations§
impl Freeze for GetStatusRequest
impl RefUnwindSafe for GetStatusRequest
impl Send for GetStatusRequest
impl Sync for GetStatusRequest
impl Unpin for GetStatusRequest
impl UnsafeUnpin for GetStatusRequest
impl UnwindSafe for GetStatusRequest
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