pub struct Create;
Expand description
Create a session instance
§Auth
- No auth
- Returns a token that needs to be cached. See #Flow section under
player::Create
§Errors
400 - BadRequest
if the request is malformed.- ‘404 - NotFound’ if the jig player session does not exist.
Trait Implementations§
Source§impl ApiEndpoint for Create
impl ApiEndpoint for Create
Source§type Path = PlayerSessionInstanceCreatePath
type Path = PlayerSessionInstanceCreatePath
The path type for this endpoint.
Source§type Req = PlayerSessionInstanceCreateRequest
type Req = PlayerSessionInstanceCreateRequest
The request type for this endpoint.
Source§type Res = PlayerSessionInstanceResponse
type Res = PlayerSessionInstanceResponse
The response type for this endpoint.
Source§type Err = EmptyError
type Err = EmptyError
The (inner) error type for this endpoint.
Auto Trait Implementations§
impl Freeze for Create
impl RefUnwindSafe for Create
impl Send for Create
impl Sync for Create
impl Unpin for Create
impl UnwindSafe for Create
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