#[repr(u8)]pub enum BypassFlag {
TypeA = 0,
TypeB = 1,
}Expand description
The Bypass Flag, controlling the type of frame acceptance checks performed by the receiving spacecraft.
Variants§
TypeA = 0
The normal acceptance checks shall be performed (Type-A).
TypeB = 1
The acceptance checks are bypassed (Type-B).
Trait Implementations§
Source§impl Clone for BypassFlag
impl Clone for BypassFlag
Source§fn clone(&self) -> BypassFlag
fn clone(&self) -> BypassFlag
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 Debug for BypassFlag
impl Debug for BypassFlag
Source§impl PartialEq for BypassFlag
impl PartialEq for BypassFlag
impl Copy for BypassFlag
impl Eq for BypassFlag
impl StructuralPartialEq for BypassFlag
Auto Trait Implementations§
impl Freeze for BypassFlag
impl RefUnwindSafe for BypassFlag
impl Send for BypassFlag
impl Sync for BypassFlag
impl Unpin for BypassFlag
impl UnsafeUnpin for BypassFlag
impl UnwindSafe for BypassFlag
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