pub struct SetOuterHtmlParams {
pub node_id: Box<NodeId>,
pub outer_html: String,
}Expand description
Sets node HTML markup, returns new node id. setOuterHTML
Fields§
§node_id: Box<NodeId>Id of the node to set markup for.
outer_html: StringOuter HTML markup to set.
Implementations§
Trait Implementations§
Source§impl Clone for SetOuterHtmlParams
impl Clone for SetOuterHtmlParams
Source§fn clone(&self) -> SetOuterHtmlParams
fn clone(&self) -> SetOuterHtmlParams
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 SetOuterHtmlParams
impl Debug for SetOuterHtmlParams
Source§impl<'de> Deserialize<'de> for SetOuterHtmlParams
impl<'de> Deserialize<'de> for SetOuterHtmlParams
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 SetOuterHtmlParams
impl PartialEq for SetOuterHtmlParams
Source§impl Serialize for SetOuterHtmlParams
impl Serialize for SetOuterHtmlParams
impl StructuralPartialEq for SetOuterHtmlParams
Auto Trait Implementations§
impl Freeze for SetOuterHtmlParams
impl RefUnwindSafe for SetOuterHtmlParams
impl Send for SetOuterHtmlParams
impl Sync for SetOuterHtmlParams
impl Unpin for SetOuterHtmlParams
impl UnsafeUnpin for SetOuterHtmlParams
impl UnwindSafe for SetOuterHtmlParams
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