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