pub enum HivelocityHardware {
BareMetal {
location_name: String,
period: String,
tags: Option<Vec<String>>,
product_id: u64,
hostname: String,
},
Compute {
location_name: String,
period: String,
tags: Option<Vec<String>>,
product_id: u64,
hostname: String,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HivelocityHardware
impl RefUnwindSafe for HivelocityHardware
impl Send for HivelocityHardware
impl Sync for HivelocityHardware
impl Unpin for HivelocityHardware
impl UnwindSafe for HivelocityHardware
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