pub struct ComponentStopInfo {
pub termination_status: Option<i32>,
pub exit_code: Option<i64>,
/* private fields */
}
Fields§
§termination_status: Option<i32>
The component’s termination status, as documented on [ComponentRunner] above.
The caller should set this field. If it is absent, the framework will assume a value of ZX_OK.
exit_code: Option<i64>
(Optional) The exit code of the component instance.
Runner implementors may map their runtime specific exit code concept (such as libc exit status) to this field. Or they may choose to leave this blank.
Trait Implementations§
Source§impl Debug for ComponentStopInfo
impl Debug for ComponentStopInfo
Source§impl Decode<ComponentStopInfo, DefaultFuchsiaResourceDialect> for ComponentStopInfo
impl Decode<ComponentStopInfo, DefaultFuchsiaResourceDialect> for ComponentStopInfo
Source§impl Default for ComponentStopInfo
impl Default for ComponentStopInfo
Source§fn default() -> ComponentStopInfo
fn default() -> ComponentStopInfo
Returns the “default value” for a type. Read more
Source§impl Encode<ComponentStopInfo, DefaultFuchsiaResourceDialect> for &mut ComponentStopInfo
impl Encode<ComponentStopInfo, DefaultFuchsiaResourceDialect> for &mut ComponentStopInfo
Source§impl PartialEq for ComponentStopInfo
impl PartialEq for ComponentStopInfo
Source§impl ResourceTypeMarker for ComponentStopInfo
impl ResourceTypeMarker for ComponentStopInfo
Source§type Borrowed<'a> = &'a mut ComponentStopInfo
type Borrowed<'a> = &'a mut ComponentStopInfo
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &mut Self::Owned
. There are three cases: Read moreSource§fn take_or_borrow<'a>(
value: &'a mut <Self as TypeMarker>::Owned,
) -> Self::Borrowed<'a>
fn take_or_borrow<'a>( value: &'a mut <Self as TypeMarker>::Owned, ) -> Self::Borrowed<'a>
Cheaply converts from
&mut Self::Owned
to Self::Borrowed
. For
HandleBased
types this is “take” (it returns an owned handle and
replaces value
with Handle::invalid
), and for all other types it is
“borrow” (just converts from one reference to another).Source§impl TypeMarker for ComponentStopInfo
impl TypeMarker for ComponentStopInfo
Source§type Owned = ComponentStopInfo
type Owned = ComponentStopInfo
The owned Rust type which this FIDL type decodes into.
Source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
Source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.impl Standalone<DefaultFuchsiaResourceDialect> for ComponentStopInfo
impl StructuralPartialEq for ComponentStopInfo
Auto 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