#[repr(u32)]pub enum ErrorHandlerConcurrencyControl {
ProcessesPause = 0,
ProcessesScheduled = 1,
}
Expand description
ARINC653P1-5 3.8.1
Variants§
ProcessesPause = 0
processes are paused when error handler is active
ProcessesScheduled = 1
processes run parallel to error handler
Implementations§
Trait Implementations§
Source§impl Clone for ErrorHandlerConcurrencyControl
impl Clone for ErrorHandlerConcurrencyControl
Source§fn clone(&self) -> ErrorHandlerConcurrencyControl
fn clone(&self) -> ErrorHandlerConcurrencyControl
Returns a duplicate 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 moreSource§impl<'de> Deserialize<'de> for ErrorHandlerConcurrencyControl
impl<'de> Deserialize<'de> for ErrorHandlerConcurrencyControl
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ErrorHandlerConcurrencyControl
impl PartialEq for ErrorHandlerConcurrencyControl
Source§fn eq(&self, other: &ErrorHandlerConcurrencyControl) -> bool
fn eq(&self, other: &ErrorHandlerConcurrencyControl) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for ErrorHandlerConcurrencyControl
impl Eq for ErrorHandlerConcurrencyControl
impl StructuralPartialEq for ErrorHandlerConcurrencyControl
Auto Trait Implementations§
impl Freeze for ErrorHandlerConcurrencyControl
impl RefUnwindSafe for ErrorHandlerConcurrencyControl
impl Send for ErrorHandlerConcurrencyControl
impl Sync for ErrorHandlerConcurrencyControl
impl Unpin for ErrorHandlerConcurrencyControl
impl UnwindSafe for ErrorHandlerConcurrencyControl
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