pub enum ChassisHeight {
Unspecified,
U(u8),
}
Expand description
§Chassis Height
Variants§
Unspecified
A chassis enclosure height is not specified.
U(u8)
Height of the enclosure, in ’U’s
A U is a standard unit of measure for the height of a rack or rack-mountable component and is equal to 1.75 inches or 4.445 cm.
Trait Implementations§
Source§impl Debug for ChassisHeight
impl Debug for ChassisHeight
Source§impl From<u8> for ChassisHeight
impl From<u8> for ChassisHeight
Auto Trait Implementations§
impl Freeze for ChassisHeight
impl RefUnwindSafe for ChassisHeight
impl Send for ChassisHeight
impl Sync for ChassisHeight
impl Unpin for ChassisHeight
impl UnwindSafe for ChassisHeight
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