pub enum HardpointSize {
Tiny,
Small,
Medium,
Large,
Huge,
}
Expand description
The sizes that hardpoints can have. HardpointSize::Tiny is used for utility mounts and the other sizes are used for full-sized modules.
Variants§
Implementations§
Source§impl HardpointSize
impl HardpointSize
Trait Implementations§
Source§impl Clone for HardpointSize
impl Clone for HardpointSize
Source§fn clone(&self) -> HardpointSize
fn clone(&self) -> HardpointSize
Returns a copy 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 HardpointSize
impl Debug for HardpointSize
Source§impl Display for HardpointSize
impl Display for HardpointSize
Source§impl FromStr for HardpointSize
impl FromStr for HardpointSize
Source§impl PartialEq for HardpointSize
impl PartialEq for HardpointSize
Source§impl Serialize for HardpointSize
impl Serialize for HardpointSize
Source§impl TryFrom<u8> for HardpointSize
impl TryFrom<u8> for HardpointSize
impl StructuralPartialEq for HardpointSize
Auto Trait Implementations§
impl Freeze for HardpointSize
impl RefUnwindSafe for HardpointSize
impl Send for HardpointSize
impl Sync for HardpointSize
impl Unpin for HardpointSize
impl UnwindSafe for HardpointSize
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