pub struct StartElementBuilder<'a> { /* private fields */ }
Expand description

A builder for a starting element event.

Implementations§

source§

impl<'a> StartElementBuilder<'a>

source

pub fn attr<N>(self, name: N, value: &'a str) -> StartElementBuilder<'a>
where N: Into<Name<'a>>,

Sets an attribute value of this element to the given string.

This method can be used to add attributes to the starting element. Name is a qualified name; its namespace is ignored, but its prefix is checked for correctness, that is, it is checked that the prefix is bound to some namespace in the current context.

Currently attributes are not checked for duplicates. Note that duplicate attributes are a violation of XML document well-formedness.

The writer checks that you don’t specify reserved prefix names, for example xmlns.

source

pub fn ns<S1, S2>(self, prefix: S1, uri: S2) -> StartElementBuilder<'a>
where S1: Into<String>, S2: Into<String>,

Adds a namespace to the current namespace context.

If no namespace URI was bound to the provided prefix at this point of the document, then the mapping from the prefix to the provided namespace URI will be written as a part of this element attribute set.

If the same namespace URI was bound to the provided prefix at this point of the document, then no namespace attributes will be emitted.

If some other namespace URI was bound to the provided prefix at this point of the document, then another binding will be added as a part of this element attribute set, shadowing the outer binding.

source

pub fn default_ns<S>(self, uri: S) -> StartElementBuilder<'a>
where S: Into<String>,

Adds a default namespace mapping to the current namespace context.

Same rules as for ns() are also valid for the default namespace mapping.

Trait Implementations§

source§

impl<'a> From<StartElementBuilder<'a>> for XmlEvent<'a>

source§

fn from(b: StartElementBuilder<'a>) -> XmlEvent<'a>

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.