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