pub struct LaunchResult {
pub pid: u32,
}Expand description
Launched-app result. TS returns { pid: number }; we follow suit.
Fields§
§pid: u32Process ID of the launched app.
Trait Implementations§
Source§impl Clone for LaunchResult
impl Clone for LaunchResult
Source§fn clone(&self) -> LaunchResult
fn clone(&self) -> LaunchResult
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 LaunchResult
impl Debug for LaunchResult
impl Eq for LaunchResult
Source§impl PartialEq for LaunchResult
impl PartialEq for LaunchResult
Source§fn eq(&self, other: &LaunchResult) -> bool
fn eq(&self, other: &LaunchResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LaunchResult
Auto Trait Implementations§
impl Freeze for LaunchResult
impl RefUnwindSafe for LaunchResult
impl Send for LaunchResult
impl Sync for LaunchResult
impl Unpin for LaunchResult
impl UnsafeUnpin for LaunchResult
impl UnwindSafe for LaunchResult
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