pub struct DomDetail {
pub r: u32,
pub outer_html: String,
pub computed: Vec<(String, String)>,
}Expand description
Detail returned by Engine::dom: outer HTML + computed-style
pairs for one ref.
Fields§
§r: u32§outer_html: String§computed: Vec<(String, String)>Computed style pairs in iteration order. Default + caller- requested properties only.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DomDetail
impl RefUnwindSafe for DomDetail
impl Send for DomDetail
impl Sync for DomDetail
impl Unpin for DomDetail
impl UnsafeUnpin for DomDetail
impl UnwindSafe for DomDetail
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