pub struct LifecycleConfig {
pub operation_timeout: Duration,
pub max_fragment_bytes: Option<NonZeroUsize>,
}Expand description
Host lifecycle operation deadlines and registration limits.
Frame supplies no timing default: the embedding application declares the deadline used to bound each lifecycle wait.
Fields§
§operation_timeout: DurationDeadline for each spawn, mailbox round-trip, or tombstone observation.
max_fragment_bytes: Option<NonZeroUsize>Caller-supplied per-fragment content byte limit (F-5a R1 — no hidden
default exists). None states loudly that the host configured no
limit: registering a fragment-carrying component then refuses typed
(FragmentLimitUnconfigured), never silently unlimited.
Trait Implementations§
Source§impl Clone for LifecycleConfig
impl Clone for LifecycleConfig
Source§fn clone(&self) -> LifecycleConfig
fn clone(&self) -> LifecycleConfig
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 moreimpl Copy for LifecycleConfig
Source§impl Debug for LifecycleConfig
impl Debug for LifecycleConfig
impl Eq for LifecycleConfig
Source§impl PartialEq for LifecycleConfig
impl PartialEq for LifecycleConfig
impl StructuralPartialEq for LifecycleConfig
Auto Trait Implementations§
impl Freeze for LifecycleConfig
impl RefUnwindSafe for LifecycleConfig
impl Send for LifecycleConfig
impl Sync for LifecycleConfig
impl Unpin for LifecycleConfig
impl UnsafeUnpin for LifecycleConfig
impl UnwindSafe for LifecycleConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.