pub struct TeePodCapacity {
pub max_disk: u64,
pub max_instances: u64,
pub max_memory: u64,
pub max_vcpu: u64,
}Expand description
Capacity configuration for a TEEPod cluster.
Fields§
§max_disk: u64Maximum disk space in GB
max_instances: u64Maximum number of instances
max_memory: u64Maximum memory in MB
max_vcpu: u64Maximum number of virtual CPUs
Trait Implementations§
Source§impl Clone for TeePodCapacity
impl Clone for TeePodCapacity
Source§fn clone(&self) -> TeePodCapacity
fn clone(&self) -> TeePodCapacity
Returns a duplicate 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 TeePodCapacity
impl Debug for TeePodCapacity
Source§impl<'de> Deserialize<'de> for TeePodCapacity
impl<'de> Deserialize<'de> for TeePodCapacity
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 TeePodCapacity
impl RefUnwindSafe for TeePodCapacity
impl Send for TeePodCapacity
impl Sync for TeePodCapacity
impl Unpin for TeePodCapacity
impl UnwindSafe for TeePodCapacity
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