#[repr(C)]pub struct WireLaunchInfo<'de> {
pub executable: WireHandle,
pub job: WireHandle,
pub name: WireString<'de>,
}
Expand description
The wire type corresponding to LaunchInfo
.
Fields§
§executable: WireHandle
§job: WireHandle
§name: WireString<'de>
Trait Implementations§
Source§impl<'de> Debug for WireLaunchInfo<'de>
impl<'de> Debug for WireLaunchInfo<'de>
Source§impl<___D> Decode<___D> for WireLaunchInfo<'static>where
___D: InternalHandleDecoder + ?Sized + Decoder + HandleDecoder,
impl<___D> Decode<___D> for WireLaunchInfo<'static>where
___D: InternalHandleDecoder + ?Sized + Decoder + HandleDecoder,
Source§impl<'de> FromWire<WireLaunchInfo<'de>> for LaunchInfo
impl<'de> FromWire<WireLaunchInfo<'de>> for LaunchInfo
Source§fn from_wire(wire: WireLaunchInfo<'de>) -> Self
fn from_wire(wire: WireLaunchInfo<'de>) -> Self
Converts the given
wire
to this type.§const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
Source§impl Wire for WireLaunchInfo<'static>
impl Wire for WireLaunchInfo<'static>
Source§type Decoded<'de> = WireLaunchInfo<'de>
type Decoded<'de> = WireLaunchInfo<'de>
The decoded wire type, restricted to the
'de
lifetime.Source§fn zero_padding(out: &mut MaybeUninit<Self>)
fn zero_padding(out: &mut MaybeUninit<Self>)
Writes zeroes to the padding for this type, if any.
Auto Trait Implementations§
impl<'de> Freeze for WireLaunchInfo<'de>
impl<'de> RefUnwindSafe for WireLaunchInfo<'de>
impl<'de> Send for WireLaunchInfo<'de>
impl<'de> Sync for WireLaunchInfo<'de>
impl<'de> Unpin for WireLaunchInfo<'de>
impl<'de> !UnwindSafe for WireLaunchInfo<'de>
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