pub struct ComponentDeploymentLimits {
pub maximum_descendants: u32,
pub maximum_registry_bytes: u64,
pub spawn_grant_reductions: Vec<ComponentDeploymentSpawnGrantLimit>,
}Expand description
Fully effective quotas inherited by every placement of one member occurrence.
Fields§
§maximum_descendants: u32§maximum_registry_bytes: u64§spawn_grant_reductions: Vec<ComponentDeploymentSpawnGrantLimit>Trait Implementations§
Source§impl Clone for ComponentDeploymentLimits
impl Clone for ComponentDeploymentLimits
Source§fn clone(&self) -> ComponentDeploymentLimits
fn clone(&self) -> ComponentDeploymentLimits
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 Debug for ComponentDeploymentLimits
impl Debug for ComponentDeploymentLimits
Source§impl<'de> Deserialize<'de> for ComponentDeploymentLimits
impl<'de> Deserialize<'de> for ComponentDeploymentLimits
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 Eq for ComponentDeploymentLimits
impl StructuralPartialEq for ComponentDeploymentLimits
Auto Trait Implementations§
impl Freeze for ComponentDeploymentLimits
impl RefUnwindSafe for ComponentDeploymentLimits
impl Send for ComponentDeploymentLimits
impl Sync for ComponentDeploymentLimits
impl Unpin for ComponentDeploymentLimits
impl UnsafeUnpin for ComponentDeploymentLimits
impl UnwindSafe for ComponentDeploymentLimits
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