pub struct ScrolledNodes {
pub overflowing_nodes: BTreeMap<NodeHierarchyItemId, OverflowingScrollNode>,
pub clip_nodes: BTreeMap<NodeId, LogicalSize>,
pub tags_to_node_ids: BTreeMap<ScrollTagId, NodeHierarchyItemId>,
}Fields§
§overflowing_nodes: BTreeMap<NodeHierarchyItemId, OverflowingScrollNode>§clip_nodes: BTreeMap<NodeId, LogicalSize>Nodes that need to clip their direct children (i.e. nodes with overflow-x and overflow-y set to “Hidden”)
Trait Implementations§
Source§impl Clone for ScrolledNodes
impl Clone for ScrolledNodes
Source§fn clone(&self) -> ScrolledNodes
fn clone(&self) -> ScrolledNodes
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 ScrolledNodes
impl Debug for ScrolledNodes
Source§impl Default for ScrolledNodes
impl Default for ScrolledNodes
Source§fn default() -> ScrolledNodes
fn default() -> ScrolledNodes
Returns the “default value” for a type. Read more
Source§impl PartialEq for ScrolledNodes
impl PartialEq for ScrolledNodes
Source§impl PartialOrd for ScrolledNodes
impl PartialOrd for ScrolledNodes
impl StructuralPartialEq for ScrolledNodes
Auto Trait Implementations§
impl Freeze for ScrolledNodes
impl RefUnwindSafe for ScrolledNodes
impl Send for ScrolledNodes
impl Sync for ScrolledNodes
impl Unpin for ScrolledNodes
impl UnwindSafe for ScrolledNodes
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
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 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>
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