pub enum RackHeight {
Unspecified,
Units(u8),
}Expand description
§Rack Height
Variants§
Unspecified
A rack enclosure height is not specified.
Units(u8)
Height of the enclosure in Rack Type units.
Trait Implementations§
Source§impl Clone for RackHeight
impl Clone for RackHeight
Source§fn clone(&self) -> RackHeight
fn clone(&self) -> RackHeight
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RackHeight
Source§impl Debug for RackHeight
impl Debug for RackHeight
impl Eq for RackHeight
Source§impl From<u8> for RackHeight
impl From<u8> for RackHeight
Source§impl PartialEq for RackHeight
impl PartialEq for RackHeight
Source§impl Serialize for RackHeight
impl Serialize for RackHeight
impl StructuralPartialEq for RackHeight
Auto Trait Implementations§
impl Freeze for RackHeight
impl RefUnwindSafe for RackHeight
impl Send for RackHeight
impl Sync for RackHeight
impl Unpin for RackHeight
impl UnsafeUnpin for RackHeight
impl UnwindSafe for RackHeight
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