pub enum AppearanceLifeFormComplianceStatus {
Show 17 variants
NotSpecified,
Detained,
Surrender,
UsingFists,
VerbalAbuseLevel1,
VerbalAbuseLevel2,
VerbalAbuseLevel3,
PassiveResistanceLevel1,
PassiveResistanceLevel2,
PassiveResistanceLevel3,
UsingNonLethalWeapon1,
UsingNonLethalWeapon2,
UsingNonLethalWeapon3,
UsingNonLethalWeapon4,
UsingNonLethalWeapon5,
UsingNonLethalWeapon6,
Unspecified(u8),
}Expand description
UID 391
Variants§
NotSpecified
Detained
Surrender
UsingFists
VerbalAbuseLevel1
VerbalAbuseLevel2
VerbalAbuseLevel3
PassiveResistanceLevel1
PassiveResistanceLevel2
PassiveResistanceLevel3
UsingNonLethalWeapon1
UsingNonLethalWeapon2
UsingNonLethalWeapon3
UsingNonLethalWeapon4
UsingNonLethalWeapon5
UsingNonLethalWeapon6
Unspecified(u8)
Trait Implementations§
Source§impl Clone for AppearanceLifeFormComplianceStatus
impl Clone for AppearanceLifeFormComplianceStatus
Source§fn clone(&self) -> AppearanceLifeFormComplianceStatus
fn clone(&self) -> AppearanceLifeFormComplianceStatus
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 From<AppearanceLifeFormComplianceStatus> for u8
impl From<AppearanceLifeFormComplianceStatus> for u8
Source§fn from(value: AppearanceLifeFormComplianceStatus) -> Self
fn from(value: AppearanceLifeFormComplianceStatus) -> Self
Converts to this type from the input type.
Source§impl From<u8> for AppearanceLifeFormComplianceStatus
impl From<u8> for AppearanceLifeFormComplianceStatus
Source§impl PartialEq for AppearanceLifeFormComplianceStatus
impl PartialEq for AppearanceLifeFormComplianceStatus
Source§fn eq(&self, other: &AppearanceLifeFormComplianceStatus) -> bool
fn eq(&self, other: &AppearanceLifeFormComplianceStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AppearanceLifeFormComplianceStatus
impl Eq for AppearanceLifeFormComplianceStatus
impl StructuralPartialEq for AppearanceLifeFormComplianceStatus
Auto Trait Implementations§
impl Freeze for AppearanceLifeFormComplianceStatus
impl RefUnwindSafe for AppearanceLifeFormComplianceStatus
impl Send for AppearanceLifeFormComplianceStatus
impl Sync for AppearanceLifeFormComplianceStatus
impl Unpin for AppearanceLifeFormComplianceStatus
impl UnwindSafe for AppearanceLifeFormComplianceStatus
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