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.