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