Struct zng_app::widget::node::SortingList

source ·
pub struct SortingList { /* private fields */ }
Expand description

Represents a sorted view into an UiNodeList.

The underlying list is not changed, a sorted index map is used to iterate the underlying list.

Note that the *_all methods are not sorted, only the other accessors map to the sorted position of nodes. The sorting is lazy and gets invalidated on every init and every time there are changes observed in update_all.

Implementations§

source§

impl SortingList

source

pub fn new( list: impl UiNodeList, sort: impl Fn(&mut BoxedUiNode, &mut BoxedUiNode) -> Ordering + Send + 'static, ) -> Self

New from list and sort function.

source

pub fn list(&mut self) -> &mut BoxedUiNodeList

Mutable borrow the inner list.

You must call invalidate_sort if any modification is done to the list.

source

pub fn invalidate_sort(&mut self)

Invalidate the sort, the list will resort on the nest time the sorted positions are needed.

Note that you can also invalidate sort from the inside using SORTING_LIST::invalidate_sort.

Trait Implementations§

source§

impl UiNodeList for SortingList

source§

fn with_node<R, F>(&mut self, index: usize, f: F) -> R
where F: FnOnce(&mut BoxedUiNode) -> R,

Visit the specific node. Read more
source§

fn for_each<F>(&mut self, f: F)
where F: FnMut(usize, &mut BoxedUiNode),

Calls f for each node in the list with the index, sequentially.
source§

fn par_each<F>(&mut self, f: F)
where F: Fn(usize, &mut BoxedUiNode) + Send + Sync,

Calls f for each node in the list with the index, in parallel.
source§

fn par_fold_reduce<T, I, F, R>(&mut self, identity: I, fold: F, _: R) -> T
where T: Send + 'static, I: Fn() -> T + Send + Sync, F: Fn(T, usize, &mut BoxedUiNode) -> T + Send + Sync, R: Fn(T, T) -> T + Send + Sync,

Calls fold for each node in the list in parallel, with fold accumulators produced by identity, then merges the folded results using reduce to produce the final value also in parallel. Read more
source§

fn len(&self) -> usize

Gets the current number of nodes in the list.
source§

fn boxed(self) -> BoxedUiNodeList

Gets self boxed, or itself if it is already boxed.
source§

fn drain_into(&mut self, vec: &mut Vec<BoxedUiNode>)

Move all nodes into vec.
source§

fn init_all(&mut self)

Init the list in a context, all nodes are also inited. Read more
source§

fn deinit_all(&mut self)

Deinit the list in a context, all nodes are also deinited. Read more
source§

fn info_all(&mut self, info: &mut WidgetInfoBuilder)

Rebuilds the list in a context, all node info is rebuilt.
source§

fn event_all(&mut self, update: &EventUpdate)

Receive an event for the list in a context, all nodes are also notified. Read more
source§

fn update_all( &mut self, updates: &WidgetUpdates, observer: &mut dyn UiNodeListObserver, )

Receive updates for the list in a context, all nodes are also updated. Read more
source§

fn render_all(&mut self, frame: &mut FrameBuilder)

Render all nodes. Read more
source§

fn render_update_all(&mut self, update: &mut FrameUpdate)

Render all nodes. Read more
source§

fn is_empty(&self) -> bool

Returns true if the list does not contain any nodes.
source§

fn measure_each<F, S>( &mut self, wm: &mut WidgetMeasure, measure: F, fold_size: S, ) -> PxSize
where F: Fn(usize, &mut BoxedUiNode, &mut WidgetMeasure) -> PxSize + Send + Sync, S: Fn(PxSize, PxSize) -> PxSize + Send + Sync, Self: Sized,

Call measure for each node and combines the final size using fold_size. Read more
source§

fn layout_each<F, S>( &mut self, wl: &mut WidgetLayout, layout: F, fold_size: S, ) -> PxSize
where F: Fn(usize, &mut BoxedUiNode, &mut WidgetLayout) -> PxSize + Send + Sync, S: Fn(PxSize, PxSize) -> PxSize + Send + Sync, Self: Sized,

Call layout for each node and combines the final size using fold_size. Read more
source§

fn downcast_unbox<L: UiNodeList>(self) -> Result<L, BoxedUiNodeList>
where Self: Sized,

Downcast to L, if self is L or is a BoxedUiNodeList that is L.
source§

fn actual_type_id(&self) -> TypeId

Returns the type_id of the unboxed list.
source§

fn as_any(&mut self) -> &mut dyn Any
where Self: Sized,

Access to mut dyn Any methods.
source§

fn op(&mut self, op: UiNodeOp<'_>)
where Self: Sized,

Runs the UiNodeOp.

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.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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.
source§

impl<A> UiNodeListChain for A
where A: UiNodeList,

source§

fn chain<B>(self, other: B) -> UiNodeListChainImpl
where B: UiNodeList,

Creates a new UiNodeList that chains self and other. Read more
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more