Skip to main content

DefaultSlotReusePolicy

Struct DefaultSlotReusePolicy 

Source
pub struct DefaultSlotReusePolicy;
Expand description

Default reuse policy that mirrors Jetpack Compose behaviour: dispose everything from the tail so that the next measurement can decide which content to keep alive. Compatibility defaults to exact slot matches.

Trait Implementations§

Source§

impl Debug for DefaultSlotReusePolicy

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for DefaultSlotReusePolicy

Source§

fn default() -> DefaultSlotReusePolicy

Returns the “default value” for a type. Read more
Source§

impl SlotReusePolicy for DefaultSlotReusePolicy

Source§

fn get_slots_to_retain(&self, active: &[SlotId]) -> HashSet<SlotId>

Returns the subset of slots that should be retained for reuse after the current measurement pass. Slots that are not part of the returned set will be disposed.
Source§

fn are_compatible(&self, existing: SlotId, requested: SlotId) -> bool

Determines whether a node that previously rendered the slot existing can be reused when the caller requests requested. Read more
Source§

fn register_content_type(&self, _slot_id: SlotId, _content_type: u64)

Registers the content type for a slot. Read more
Source§

fn remove_content_type(&self, _slot_id: SlotId)

Removes the content type for a slot (e.g., when transitioning to None). Read more
Source§

fn prune_slots(&self, _keep_slots: &HashSet<SlotId>)

Prunes slot data for slots not in the active set. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.