pub struct LayoutTreeNode {
pub dom_node_index: JsUInt,
pub bounding_box: Rect,
pub layout_text: Option<String>,
pub inline_text_nodes: Option<Vec<InlineTextBox>>,
pub style_index: Option<JsUInt>,
pub paint_order: Option<JsUInt>,
pub is_stacking_context: Option<bool>,
}Expand description
Details of an element in the DOM tree with a LayoutObject.
Fields§
§dom_node_index: JsUIntThe index of the related DOM node in the domNodes array returned by getSnapshot.
bounding_box: RectThe bounding box in document coordinates. Note that scroll offset of the document is ignored.
layout_text: Option<String>Contents of the LayoutText, if any.
inline_text_nodes: Option<Vec<InlineTextBox>>The post-layout inline text nodes, if any.
style_index: Option<JsUInt>Index into the computedStyles array returned by getSnapshot.
paint_order: Option<JsUInt>Global paint order index, which is determined by the stacking order of the nodes. Nodes that are painted together will have the same index. Only provided if includePaintOrder in getSnapshot was true.
is_stacking_context: Option<bool>Set to true to indicate the element begins a new stacking context.
Trait Implementations§
Source§impl Clone for LayoutTreeNode
impl Clone for LayoutTreeNode
Source§fn clone(&self) -> LayoutTreeNode
fn clone(&self) -> LayoutTreeNode
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 LayoutTreeNode
impl Debug for LayoutTreeNode
Source§impl<'de> Deserialize<'de> for LayoutTreeNode
impl<'de> Deserialize<'de> for LayoutTreeNode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LayoutTreeNode
impl PartialEq for LayoutTreeNode
Source§impl Serialize for LayoutTreeNode
impl Serialize for LayoutTreeNode
impl StructuralPartialEq for LayoutTreeNode
Auto Trait Implementations§
impl Freeze for LayoutTreeNode
impl RefUnwindSafe for LayoutTreeNode
impl Send for LayoutTreeNode
impl Sync for LayoutTreeNode
impl Unpin for LayoutTreeNode
impl UnsafeUnpin for LayoutTreeNode
impl UnwindSafe for LayoutTreeNode
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