pub struct SessionRelaunchAppResponse {
pub ok: bool,
pub wall_ms: u64,
}Expand description
POST /session/relaunch-app response body.
Fields§
§ok: boolTrue on success (session known + relaunch cycle completed).
wall_ms: u64Wall-clock milliseconds the terminate+launch cycle took.
Trait Implementations§
Source§impl Clone for SessionRelaunchAppResponse
impl Clone for SessionRelaunchAppResponse
Source§fn clone(&self) -> SessionRelaunchAppResponse
fn clone(&self) -> SessionRelaunchAppResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SessionRelaunchAppResponse
impl Debug for SessionRelaunchAppResponse
Source§impl Default for SessionRelaunchAppResponse
impl Default for SessionRelaunchAppResponse
Source§fn default() -> SessionRelaunchAppResponse
fn default() -> SessionRelaunchAppResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionRelaunchAppResponse
impl<'de> Deserialize<'de> for SessionRelaunchAppResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SessionRelaunchAppResponse
impl RefUnwindSafe for SessionRelaunchAppResponse
impl Send for SessionRelaunchAppResponse
impl Sync for SessionRelaunchAppResponse
impl Unpin for SessionRelaunchAppResponse
impl UnsafeUnpin for SessionRelaunchAppResponse
impl UnwindSafe for SessionRelaunchAppResponse
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