pub enum AppearanceCanopy {
NotApplicable,
SingleCanopySingleTroopDoorClosed,
FrontAndRearCanopyLeftAndRightTroopDoorClosed,
FrontCanopyLeftTroopDoorOpen,
SingleCanopySingleTroopDoorOpen,
RearCanopyRightTroopDoorOpen,
FrontAndRearCanopyLeftAndRightTroopDoorOpen,
Unspecified(u8),
}Expand description
UID 387
Variants§
NotApplicable
SingleCanopySingleTroopDoorClosed
FrontAndRearCanopyLeftAndRightTroopDoorClosed
FrontCanopyLeftTroopDoorOpen
SingleCanopySingleTroopDoorOpen
RearCanopyRightTroopDoorOpen
FrontAndRearCanopyLeftAndRightTroopDoorOpen
Unspecified(u8)
Trait Implementations§
Source§impl Clone for AppearanceCanopy
impl Clone for AppearanceCanopy
Source§fn clone(&self) -> AppearanceCanopy
fn clone(&self) -> AppearanceCanopy
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 AppearanceCanopy
impl Debug for AppearanceCanopy
Source§impl Default for AppearanceCanopy
impl Default for AppearanceCanopy
Source§impl Display for AppearanceCanopy
impl Display for AppearanceCanopy
Source§impl From<AppearanceCanopy> for u8
impl From<AppearanceCanopy> for u8
Source§fn from(value: AppearanceCanopy) -> Self
fn from(value: AppearanceCanopy) -> Self
Converts to this type from the input type.
Source§impl From<u8> for AppearanceCanopy
impl From<u8> for AppearanceCanopy
Source§impl Hash for AppearanceCanopy
impl Hash for AppearanceCanopy
Source§impl PartialEq for AppearanceCanopy
impl PartialEq for AppearanceCanopy
impl Copy for AppearanceCanopy
impl Eq for AppearanceCanopy
impl StructuralPartialEq for AppearanceCanopy
Auto Trait Implementations§
impl Freeze for AppearanceCanopy
impl RefUnwindSafe for AppearanceCanopy
impl Send for AppearanceCanopy
impl Sync for AppearanceCanopy
impl Unpin for AppearanceCanopy
impl UnwindSafe for AppearanceCanopy
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