pub struct ResourceRequirements {
pub limits: Option<HashMap<String, String>>,
pub requests: Option<HashMap<String, String>>,
}
Expand description
ResourceRequirements describes the compute resource requirements.
This type is not used in any activity, and only used as part of another schema.
Fields§
§limits: Option<HashMap<String, String>>
Limits describes the maximum amount of compute resources allowed. Only ‘cpu’ and ‘memory’ keys are supported. * For supported ‘cpu’ values, go to https://cloud.google.com/run/docs/configuring/cpu. * For supported ‘memory’ values and syntax, go to https://cloud.google.com/run/docs/configuring/memory-limits
requests: Option<HashMap<String, String>>
Requests describes the minimum amount of compute resources required. Only cpu
and memory
are supported. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. * For supported ‘cpu’ values, go to https://cloud.google.com/run/docs/configuring/cpu. * For supported ‘memory’ values and syntax, go to https://cloud.google.com/run/docs/configuring/memory-limits
Trait Implementations§
Source§impl Clone for ResourceRequirements
impl Clone for ResourceRequirements
Source§fn clone(&self) -> ResourceRequirements
fn clone(&self) -> ResourceRequirements
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ResourceRequirements
impl Debug for ResourceRequirements
Source§impl Default for ResourceRequirements
impl Default for ResourceRequirements
Source§fn default() -> ResourceRequirements
fn default() -> ResourceRequirements
Source§impl<'de> Deserialize<'de> for ResourceRequirements
impl<'de> Deserialize<'de> for ResourceRequirements
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>,
Source§impl Serialize for ResourceRequirements
impl Serialize for ResourceRequirements
impl Part for ResourceRequirements
Auto Trait Implementations§
impl Freeze for ResourceRequirements
impl RefUnwindSafe for ResourceRequirements
impl Send for ResourceRequirements
impl Sync for ResourceRequirements
impl Unpin for ResourceRequirements
impl UnwindSafe for ResourceRequirements
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more