pub struct InlineAutoRemeasureConfig {
pub voi: VoiConfig,
pub change_threshold_rows: u16,
}Expand description
Policy for remeasuring inline auto UI height.
Uses VOI (value-of-information) sampling to decide when to perform
a costly full-height measurement, with any-time valid guarantees via
the embedded e-process in VoiSampler.
Fields§
§voi: VoiConfigVOI sampling configuration.
change_threshold_rows: u16Minimum row delta to count as a “violation”.
Trait Implementations§
Source§impl Clone for InlineAutoRemeasureConfig
impl Clone for InlineAutoRemeasureConfig
Source§fn clone(&self) -> InlineAutoRemeasureConfig
fn clone(&self) -> InlineAutoRemeasureConfig
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 InlineAutoRemeasureConfig
impl Debug for InlineAutoRemeasureConfig
Auto Trait Implementations§
impl Freeze for InlineAutoRemeasureConfig
impl RefUnwindSafe for InlineAutoRemeasureConfig
impl Send for InlineAutoRemeasureConfig
impl Sync for InlineAutoRemeasureConfig
impl Unpin for InlineAutoRemeasureConfig
impl UnsafeUnpin for InlineAutoRemeasureConfig
impl UnwindSafe for InlineAutoRemeasureConfig
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