Struct minidom::element::ElementBuilder
source · pub struct ElementBuilder { /* private fields */ }
Expand description
A builder for Element
s.
Implementations§
source§impl ElementBuilder
impl ElementBuilder
sourcepub fn prefix<S: Into<String>>(
self,
prefix: Option<String>,
namespace: S,
) -> Result<ElementBuilder>
pub fn prefix<S: Into<String>>( self, prefix: Option<String>, namespace: S, ) -> Result<ElementBuilder>
Sets a custom prefix. It is not possible to set the same prefix twice.
sourcepub fn attr<S: Into<String>, V: IntoAttributeValue>(
self,
name: S,
value: V,
) -> ElementBuilder
pub fn attr<S: Into<String>, V: IntoAttributeValue>( self, name: S, value: V, ) -> ElementBuilder
Sets an attribute.
sourcepub fn append<T: Into<Node>>(self, node: T) -> ElementBuilder
pub fn append<T: Into<Node>>(self, node: T) -> ElementBuilder
Appends anything implementing Into<Node>
into the tree.
sourcepub fn append_all<T: Into<Node>, I: IntoIterator<Item = T>>(
self,
iter: I,
) -> ElementBuilder
pub fn append_all<T: Into<Node>, I: IntoIterator<Item = T>>( self, iter: I, ) -> ElementBuilder
Appends an iterator of things implementing Into<Node>
into the tree.
Trait Implementations§
source§impl From<ElementBuilder> for Node
impl From<ElementBuilder> for Node
source§fn from(builder: ElementBuilder) -> Node
fn from(builder: ElementBuilder) -> Node
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ElementBuilder
impl RefUnwindSafe for ElementBuilder
impl Send for ElementBuilder
impl Sync for ElementBuilder
impl Unpin for ElementBuilder
impl UnwindSafe for ElementBuilder
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