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