#[non_exhaustive]pub struct MaximumAllowedResources {
pub cpu: Option<String>,
pub memory: Option<String>,
pub disk: Option<String>,
}
Expand description
The maximum allowed cumulative resources for an application. No new resources will be created once the limit is hit.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.cpu: Option<String>
The maximum allowed CPU for an application.
memory: Option<String>
The maximum allowed resources for an application.
disk: Option<String>
The maximum allowed disk for an application.
Implementations§
source§impl MaximumAllowedResources
impl MaximumAllowedResources
sourcepub fn builder() -> MaximumAllowedResourcesBuilder
pub fn builder() -> MaximumAllowedResourcesBuilder
Creates a new builder-style object to manufacture MaximumAllowedResources
.
Trait Implementations§
source§impl Clone for MaximumAllowedResources
impl Clone for MaximumAllowedResources
source§fn clone(&self) -> MaximumAllowedResources
fn clone(&self) -> MaximumAllowedResources
Returns a copy 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 MaximumAllowedResources
impl Debug for MaximumAllowedResources
source§impl PartialEq<MaximumAllowedResources> for MaximumAllowedResources
impl PartialEq<MaximumAllowedResources> for MaximumAllowedResources
source§fn eq(&self, other: &MaximumAllowedResources) -> bool
fn eq(&self, other: &MaximumAllowedResources) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MaximumAllowedResources
Auto Trait Implementations§
impl RefUnwindSafe for MaximumAllowedResources
impl Send for MaximumAllowedResources
impl Sync for MaximumAllowedResources
impl Unpin for MaximumAllowedResources
impl UnwindSafe for MaximumAllowedResources
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