pub struct LayoutTreeNode {
pub domNodeIndex: u64,
pub boundingBox: Rect,
pub layoutText: Option<String>,
pub inlineTextNodes: Option<Vec<InlineTextBox>>,
pub styleIndex: Option<u64>,
pub paintOrder: Option<i64>,
pub isStackingContext: Option<bool>,
}Expand description
Details of an element in the DOM tree with a LayoutObject.
Fields§
§domNodeIndex: u64The index of the related DOM node in the ‘domNodes’ array returned by ‘getSnapshot’.
boundingBox: RectThe bounding box in document coordinates. Note that scroll offset of the document is ignored.
layoutText: Option<String>Contents of the LayoutText, if any.
inlineTextNodes: Option<Vec<InlineTextBox>>The post-layout inline text nodes, if any.
styleIndex: Option<u64>Index into the ‘computedStyles’ array returned by ‘getSnapshot’.
paintOrder: Option<i64>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.
isStackingContext: 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 Default for LayoutTreeNode
impl Default for LayoutTreeNode
Source§fn default() -> LayoutTreeNode
fn default() -> LayoutTreeNode
Returns the “default value” for a type. Read more
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
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