pub struct ResourceAllocation {
pub recommended_vm_count: u32,
pub memory_per_vm_gb: f64,
pub cpu_cores_per_vm: u32,
pub storage_allocation_gb: f64,
}
Fields§
§recommended_vm_count: u32
§memory_per_vm_gb: f64
§cpu_cores_per_vm: u32
§storage_allocation_gb: f64
Trait Implementations§
Source§impl Debug for ResourceAllocation
impl Debug for ResourceAllocation
Source§impl<'de> Deserialize<'de> for ResourceAllocation
impl<'de> Deserialize<'de> for ResourceAllocation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ResourceAllocation
impl RefUnwindSafe for ResourceAllocation
impl Send for ResourceAllocation
impl Sync for ResourceAllocation
impl Unpin for ResourceAllocation
impl UnwindSafe for ResourceAllocation
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