Enum OnTerminate
#[repr(u32)]pub enum OnTerminate {
None = 0,
Reboot = 1,
}
Expand description
Describes the action to take if this component instance terminates unexpectedly.
Variants§
None = 0
No action, the default
Reboot = 1
Trigger a graceful system reboot if the component terminates, unless its controller reports
via [fuchsia.component.runner/ComponentController.OnStop
] a termination_status
of Ok and
an exit_code
that is either unset or 0. This is a specialized feature gated by Component
Framework security policy.
Implementations§
§impl OnTerminate
impl OnTerminate
pub fn from_primitive(prim: u32) -> Option<OnTerminate>
pub const fn into_primitive(self) -> u32
pub fn is_unknown(&self) -> bool
👎Deprecated: Strict enums should not use
is_unknown
Trait Implementations§
§impl Clone for OnTerminate
impl Clone for OnTerminate
§fn clone(&self) -> OnTerminate
fn clone(&self) -> OnTerminate
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for OnTerminate
impl Debug for OnTerminate
§impl<D> Decode<OnTerminate, D> for OnTerminatewhere
D: ResourceDialect,
impl<D> Decode<OnTerminate, D> for OnTerminatewhere
D: ResourceDialect,
§fn new_empty() -> OnTerminate
fn new_empty() -> OnTerminate
Creates a valid instance of
Self
. The specific value does not matter,
since it will be overwritten by decode
.§impl<D> Encode<OnTerminate, D> for OnTerminatewhere
D: ResourceDialect,
impl<D> Encode<OnTerminate, D> for OnTerminatewhere
D: ResourceDialect,
§impl Hash for OnTerminate
impl Hash for OnTerminate
§impl Ord for OnTerminate
impl Ord for OnTerminate
§impl PartialEq for OnTerminate
impl PartialEq for OnTerminate
§impl PartialOrd for OnTerminate
impl PartialOrd for OnTerminate
§impl TypeMarker for OnTerminate
impl TypeMarker for OnTerminate
§type Owned = OnTerminate
type Owned = OnTerminate
The owned Rust type which this FIDL type decodes into.
§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.
§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 ValueTypeMarker for OnTerminate
impl ValueTypeMarker for OnTerminate
§type Borrowed<'a> = OnTerminate
type Borrowed<'a> = OnTerminate
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read more§fn borrow(
value: &<OnTerminate as TypeMarker>::Owned,
) -> <OnTerminate as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<OnTerminate as TypeMarker>::Owned, ) -> <OnTerminate as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from
&Self::Owned
to Self::Borrowed
.impl Copy for OnTerminate
impl Eq for OnTerminate
impl StructuralPartialEq for OnTerminate
Auto Trait Implementations§
impl Freeze for OnTerminate
impl RefUnwindSafe for OnTerminate
impl Send for OnTerminate
impl Sync for OnTerminate
impl Unpin for OnTerminate
impl UnwindSafe for OnTerminate
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