pub struct CreateContributionRequest;Expand description
Endpoint marker for the games.gamesgamesgamesgames.createContribution procedure.
Path: /xrpc/games.gamesgamesgamesgames.createContribution. The request payload type is CreateContribution<S>; send that request with jacquard::Client or use this marker through lower-level XrpcEndpoint APIs.
Trait Implementations§
Source§impl XrpcEndpoint for CreateContributionRequest
impl XrpcEndpoint for CreateContributionRequest
Source§const PATH: &'static str = "/xrpc/games.gamesgamesgamesgames.createContribution"
const PATH: &'static str = "/xrpc/games.gamesgamesgamesgames.createContribution"
Fully-qualified path (‘/xrpc/[nsid]’) where this endpoint should live on the server
Source§const METHOD: XrpcMethod
const METHOD: XrpcMethod
XRPC method (query/GET or procedure/POST)
Source§type Request<S: BosStr> = CreateContribution<S>
type Request<S: BosStr> = CreateContribution<S>
XRPC Request data type
Source§type Response = CreateContributionResponse
type Response = CreateContributionResponse
XRPC Response data type
Auto Trait Implementations§
impl Freeze for CreateContributionRequest
impl RefUnwindSafe for CreateContributionRequest
impl Send for CreateContributionRequest
impl Sync for CreateContributionRequest
impl Unpin for CreateContributionRequest
impl UnsafeUnpin for CreateContributionRequest
impl UnwindSafe for CreateContributionRequest
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