pub struct SessionAppLifecycleRequest {
pub session_id: String,
}Expand description
v1.0.8 §D1 — request body shared by POST /session/terminate-app
and POST /session/launch-app. Both endpoints take just the
session id.
Fields§
§session_id: StringSession whose cached XCUIApplication binding will be acted on.
Trait Implementations§
Source§impl Clone for SessionAppLifecycleRequest
impl Clone for SessionAppLifecycleRequest
Source§fn clone(&self) -> SessionAppLifecycleRequest
fn clone(&self) -> SessionAppLifecycleRequest
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 SessionAppLifecycleRequest
impl Debug for SessionAppLifecycleRequest
Source§impl<'de> Deserialize<'de> for SessionAppLifecycleRequest
impl<'de> Deserialize<'de> for SessionAppLifecycleRequest
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 SessionAppLifecycleRequest
impl RefUnwindSafe for SessionAppLifecycleRequest
impl Send for SessionAppLifecycleRequest
impl Sync for SessionAppLifecycleRequest
impl Unpin for SessionAppLifecycleRequest
impl UnsafeUnpin for SessionAppLifecycleRequest
impl UnwindSafe for SessionAppLifecycleRequest
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