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>,
}Fields§
§dom_node_index: JsUInt§bounding_box: Rect§layout_text: Option<String>§inline_text_nodes: Option<Vec<InlineTextBox>>§style_index: Option<JsUInt>§paint_order: Option<JsUInt>§is_stacking_context: Option<bool>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 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