pub struct ComponentStopInfo {
pub termination_status: Option<i32>,
pub exit_code: Option<i64>,
}
Fields§
§termination_status: Option<i32>
§exit_code: Option<i64>
Trait Implementations§
Source§impl Debug for ComponentStopInfo
impl Debug for ComponentStopInfo
Source§impl Encodable for ComponentStopInfo
impl Encodable for ComponentStopInfo
Source§type Encoded = WireComponentStopInfo
type Encoded = WireComponentStopInfo
The wire type for the value.
§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
An optimization flag that allows the bytes of this type to be copied directly during
encoding instead of calling
encode
. Read moreSource§impl<___E> Encode<___E> for ComponentStopInfowhere
___E: Encoder + ?Sized + HandleEncoder,
impl<___E> Encode<___E> for ComponentStopInfowhere
___E: Encoder + ?Sized + HandleEncoder,
Source§impl TakeFrom<WireComponentStopInfo> for ComponentStopInfo
impl TakeFrom<WireComponentStopInfo> for ComponentStopInfo
Source§fn take_from(from: &WireComponentStopInfo) -> Self
fn take_from(from: &WireComponentStopInfo) -> Self
Converts from the given
T
, taking any resources that can’t be cloned.§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
An optimization flag that allows the bytes of this type to be copied directly during
conversion instead of calling
take_from
. Read moreAuto Trait Implementations§
impl Freeze for ComponentStopInfo
impl RefUnwindSafe for ComponentStopInfo
impl Send for ComponentStopInfo
impl Sync for ComponentStopInfo
impl Unpin for ComponentStopInfo
impl UnwindSafe for ComponentStopInfo
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