pub enum LayersPresenceApplicability {
NotPresentApplicable,
PresentApplicable,
}Expand description
Custom defined enum to model the presence or applicability of an IFF layer as used in IFF Layer 1.
Variants§
Trait Implementations§
Source§impl Clone for LayersPresenceApplicability
impl Clone for LayersPresenceApplicability
Source§fn clone(&self) -> LayersPresenceApplicability
fn clone(&self) -> LayersPresenceApplicability
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 LayersPresenceApplicability
impl Debug for LayersPresenceApplicability
Source§impl Default for LayersPresenceApplicability
impl Default for LayersPresenceApplicability
Source§fn default() -> LayersPresenceApplicability
fn default() -> LayersPresenceApplicability
Returns the “default value” for a type. Read more
Source§impl From<&LayersPresenceApplicability> for u8
impl From<&LayersPresenceApplicability> for u8
Source§fn from(value: &LayersPresenceApplicability) -> Self
fn from(value: &LayersPresenceApplicability) -> Self
Converts to this type from the input type.
Source§impl From<u8> for LayersPresenceApplicability
impl From<u8> for LayersPresenceApplicability
impl Copy for LayersPresenceApplicability
impl StructuralPartialEq for LayersPresenceApplicability
Auto Trait Implementations§
impl Freeze for LayersPresenceApplicability
impl RefUnwindSafe for LayersPresenceApplicability
impl Send for LayersPresenceApplicability
impl Sync for LayersPresenceApplicability
impl Unpin for LayersPresenceApplicability
impl UnwindSafe for LayersPresenceApplicability
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