pub struct ContinuationFixtureLimits {
pub host_bytes: u64,
pub growth_bytes: u64,
pub max_predictions: u64,
pub capture: Option<CaptureLimits>,
}Expand description
Known fixture storage bounds and explicitly admitted child limits.
Fields§
§host_bytes: u64Controller/host storage through the fixture’s complete continuation.
growth_bytes: u64Additional native and host growth through the absolute prediction limit.
max_predictions: u64Absolute prediction limit, at least eight for this scenario.
capture: Option<CaptureLimits>Explicit child capture limits, including inherited consumption.
Auto Trait Implementations§
impl Freeze for ContinuationFixtureLimits
impl RefUnwindSafe for ContinuationFixtureLimits
impl Send for ContinuationFixtureLimits
impl Sync for ContinuationFixtureLimits
impl Unpin for ContinuationFixtureLimits
impl UnsafeUnpin for ContinuationFixtureLimits
impl UnwindSafe for ContinuationFixtureLimits
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