pub struct GetSessionRequest;Expand description
Endpoint marker for the com.atproto.server.getSession query.
Path: /xrpc/com.atproto.server.getSession. The request payload type is GetSession; use this marker with lower-level XrpcEndpoint APIs when you need endpoint metadata.
Trait Implementations§
Source§impl XrpcEndpoint for GetSessionRequest
impl XrpcEndpoint for GetSessionRequest
Source§const PATH: &'static str = "/xrpc/com.atproto.server.getSession"
const PATH: &'static str = "/xrpc/com.atproto.server.getSession"
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> = GetSession
type Request<S: BosStr> = GetSession
XRPC Request data type
Source§type Response = GetSessionResponse
type Response = GetSessionResponse
XRPC Response data type
Auto Trait Implementations§
impl Freeze for GetSessionRequest
impl RefUnwindSafe for GetSessionRequest
impl Send for GetSessionRequest
impl Sync for GetSessionRequest
impl Unpin for GetSessionRequest
impl UnsafeUnpin for GetSessionRequest
impl UnwindSafe for GetSessionRequest
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