pub enum ReflowGoal {
UpdateTheRendering,
LayoutQuery(QueryMsg),
UpdateScrollNode(ScrollState),
}
Expand description
The goal of a reflow request.
Please do not add any other types of reflows. In general, all reflow should go through the update the rendering step of the HTML specification. Exceptions should have careful review.
Variants§
UpdateTheRendering
A reflow has been requesting by the update the rendering step of the HTML event loop. This nominally driven by the display’s VSync.
LayoutQuery(QueryMsg)
Script has done a layout query and this reflow ensurs that layout is up-to-date with the latest changes to the DOM.
UpdateScrollNode(ScrollState)
Tells layout about a single new scrolling offset from the script. The rest will remain untouched and layout won’t forward this back to script.
Implementations§
source§impl ReflowGoal
impl ReflowGoal
sourcepub fn needs_display_list(&self) -> bool
pub fn needs_display_list(&self) -> bool
Returns true if the given ReflowQuery needs a full, up-to-date display list to be present or false if it only needs stacking-relative positions.
sourcepub fn needs_display(&self) -> bool
pub fn needs_display(&self) -> bool
Returns true if the given ReflowQuery needs its display list send to WebRender or false if a layout_thread display list is sufficient.
Trait Implementations§
source§impl Debug for ReflowGoal
impl Debug for ReflowGoal
source§impl PartialEq for ReflowGoal
impl PartialEq for ReflowGoal
impl StructuralPartialEq for ReflowGoal
Auto Trait Implementations§
impl Freeze for ReflowGoal
impl RefUnwindSafe for ReflowGoal
impl Send for ReflowGoal
impl Sync for ReflowGoal
impl Unpin for ReflowGoal
impl UnwindSafe for ReflowGoal
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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