pub struct HostIOThresholds {
pub max_total_calls_increase_percent: Option<f64>,
pub limits: Option<HashMap<String, u64>>,
}Expand description
HostIO-related thresholds
Fields§
§max_total_calls_increase_percent: Option<f64>Maximum allowed percentage increase in total HostIO calls
limits: Option<HashMap<String, u64>>Per-type absolute limits (e.g., storage_load_max_increase: 5)
Trait Implementations§
Source§impl Clone for HostIOThresholds
impl Clone for HostIOThresholds
Source§fn clone(&self) -> HostIOThresholds
fn clone(&self) -> HostIOThresholds
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 HostIOThresholds
impl Debug for HostIOThresholds
Source§impl Default for HostIOThresholds
impl Default for HostIOThresholds
Source§fn default() -> HostIOThresholds
fn default() -> HostIOThresholds
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HostIOThresholds
impl<'de> Deserialize<'de> for HostIOThresholds
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 HostIOThresholds
impl RefUnwindSafe for HostIOThresholds
impl Send for HostIOThresholds
impl Sync for HostIOThresholds
impl Unpin for HostIOThresholds
impl UnsafeUnpin for HostIOThresholds
impl UnwindSafe for HostIOThresholds
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