Struct zng_app::update::ContextUpdates

source ·
pub struct ContextUpdates {
    pub events: Vec<EventUpdate>,
    pub update: bool,
    pub info: bool,
    pub layout: bool,
    pub render: bool,
    pub update_widgets: WidgetUpdates,
    pub info_widgets: InfoUpdates,
    pub layout_widgets: LayoutUpdates,
    pub render_widgets: RenderUpdates,
    pub render_update_widgets: RenderUpdates,
}
Expand description

Updates that must be reacted by an app owner.

This type is public only for testing, it is the return type for test methods of WINDOW.

Fields§

§events: Vec<EventUpdate>

Events to notify.

When this is not empty update is true.

§update: bool

Update requested.

When this is true, update_widgets may contain widgets, if not then only app extensions must update.

§info: bool

Info rebuild requested.

When this is true, info_widgets may contain widgets, if not then only app extensions must update.

§layout: bool

Layout requested.

When this is true, layout_widgets may contain widgets, if not then only app extensions must update.

§render: bool

Render requested.

When this is true, render_widgets or render_update_widgets may contain widgets, if not then only app extensions must update.

§update_widgets: WidgetUpdates

Update targets.

When this is not empty update is true.

§info_widgets: InfoUpdates

Info rebuild targets.

When this is not empty info is true.

§layout_widgets: LayoutUpdates

Layout targets.

When this is not empty layout is true.

§render_widgets: RenderUpdates

Full render targets.

When this is not empty render is true.

§render_update_widgets: RenderUpdates

Render update targets.

When this is not empty render is true.

Implementations§

source§

impl ContextUpdates

source

pub fn has_updates(&self) -> bool

If has events, update, layout or render was requested.

Trait Implementations§

source§

impl BitOr for ContextUpdates

source§

type Output = ContextUpdates

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self

Performs the | operation. Read more
source§

impl BitOrAssign for ContextUpdates

source§

fn bitor_assign(&mut self, rhs: Self)

Performs the |= operation. Read more
source§

impl Debug for ContextUpdates

source§

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

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

impl Default for ContextUpdates

source§

fn default() -> ContextUpdates

Returns the “default value” for a type. 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.

§

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.
§

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
source§

impl<T> StateValue for T
where T: Any + Send + Sync,