Enum ark_api::applet::DetachPlayerResult
source · pub enum DetachPlayerResult {
Waiting(DetachPlayerRequest),
Ready(ReadyDetachPlayerRequest),
Failed,
}Expand description
The result of a request to detach a player.
Variants§
Waiting(DetachPlayerRequest)
The request is still pending on the host. Retry to poll with the wrapped request.
Note the request may be spawned a few times for retrying, in case of failure.
Ready(ReadyDetachPlayerRequest)
The request is ready for consumption.
Failed
The request failed.
Auto Trait Implementations§
impl RefUnwindSafe for DetachPlayerResult
impl Send for DetachPlayerResult
impl Sync for DetachPlayerResult
impl Unpin for DetachPlayerResult
impl UnwindSafe for DetachPlayerResult
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