pub struct AirflowClusterTriggerersConfigResourcesMemory {
pub limit: Option<String>,
pub runtime_limits: Option<AirflowClusterTriggerersConfigResourcesMemoryRuntimeLimits>,
}Fields§
§limit: Option<String>The maximum amount of memory that should be available to the Pod.
Specified as a byte [Quantity](https://kubernetes.io/docs/reference/kubernetes-api/common-definitions/quantity/),
which means these suffixes are supported: E, P, T, G, M, k.
You can also use the power-of-two equivalents: Ei, Pi, Ti, Gi, Mi, Ki.
For example, the following represent roughly the same value:
128974848, 129e6, 129M, 128974848000m, 123Mi
runtime_limits: Option<AirflowClusterTriggerersConfigResourcesMemoryRuntimeLimits>Additional options that can be specified.
Trait Implementations§
Source§impl Clone for AirflowClusterTriggerersConfigResourcesMemory
impl Clone for AirflowClusterTriggerersConfigResourcesMemory
Source§fn clone(&self) -> AirflowClusterTriggerersConfigResourcesMemory
fn clone(&self) -> AirflowClusterTriggerersConfigResourcesMemory
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for AirflowClusterTriggerersConfigResourcesMemory
impl Default for AirflowClusterTriggerersConfigResourcesMemory
Source§fn default() -> AirflowClusterTriggerersConfigResourcesMemory
fn default() -> AirflowClusterTriggerersConfigResourcesMemory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AirflowClusterTriggerersConfigResourcesMemory
impl<'de> Deserialize<'de> for AirflowClusterTriggerersConfigResourcesMemory
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
impl StructuralPartialEq for AirflowClusterTriggerersConfigResourcesMemory
Auto Trait Implementations§
impl Freeze for AirflowClusterTriggerersConfigResourcesMemory
impl RefUnwindSafe for AirflowClusterTriggerersConfigResourcesMemory
impl Send for AirflowClusterTriggerersConfigResourcesMemory
impl Sync for AirflowClusterTriggerersConfigResourcesMemory
impl Unpin for AirflowClusterTriggerersConfigResourcesMemory
impl UnsafeUnpin for AirflowClusterTriggerersConfigResourcesMemory
impl UnwindSafe for AirflowClusterTriggerersConfigResourcesMemory
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