Struct xmpp_parsers::Element

source ·
pub struct Element {
    pub prefixes: Prefixes,
    /* private fields */
}
Expand description

A struct representing a DOM Element.

Fields§

§prefixes: Prefixes

Namespace declarations

Implementations§

source§

impl Element

source

pub fn builder<S, NS>(name: S, namespace: NS) -> ElementBuilder
where S: AsRef<str>, NS: Into<String>,

Return a builder for an Element with the given name.

§Examples
use minidom::Element;

let elem = Element::builder("name", "namespace")
                   .attr("name", "value")
                   .append("inner")
                   .build();

assert_eq!(elem.name(), "name");
assert_eq!(elem.ns(), "namespace".to_owned());
assert_eq!(elem.attr("name"), Some("value"));
assert_eq!(elem.attr("inexistent"), None);
assert_eq!(elem.text(), "inner");
source

pub fn bare<S, NS>(name: S, namespace: NS) -> Element
where S: Into<String>, NS: Into<String>,

Returns a bare minimum Element with this name.

§Examples
use minidom::Element;

let bare = Element::bare("name", "namespace");

assert_eq!(bare.name(), "name");
assert_eq!(bare.ns(), "namespace");
assert_eq!(bare.attr("name"), None);
assert_eq!(bare.text(), "");
source

pub fn name(&self) -> &str

Returns a reference to the local name of this element (that is, without a possible prefix).

source

pub fn ns(&self) -> String

Returns a reference to the namespace of this element.

source

pub fn attr(&self, name: &str) -> Option<&str>

Returns a reference to the value of the given attribute, if it exists, else None.

source

pub fn attrs(&self) -> Attrs<'_>

Returns an iterator over the attributes of this element.

§Example
use minidom::Element;

let elm: Element = "<elem xmlns=\"ns1\" a=\"b\" />".parse().unwrap();

let mut iter = elm.attrs();

assert_eq!(iter.next().unwrap(), ("a", "b"));
assert_eq!(iter.next(), None);
source

pub fn attrs_mut(&mut self) -> AttrsMut<'_>

Returns an iterator over the attributes of this element, with the value being a mutable reference.

source

pub fn set_attr<S, V>(&mut self, name: S, val: V)

Modifies the value of an attribute.

source

pub fn is<'a, N, NS>(&self, name: N, namespace: NS) -> bool
where N: AsRef<str>, NS: Into<NSChoice<'a>>,

Returns whether the element has the given name and namespace.

§Examples
use minidom::{Element, NSChoice};

let elem = Element::builder("name", "namespace").build();

assert_eq!(elem.is("name", "namespace"), true);
assert_eq!(elem.is("name", "wrong"), false);
assert_eq!(elem.is("wrong", "namespace"), false);
assert_eq!(elem.is("wrong", "wrong"), false);

assert_eq!(elem.is("name", NSChoice::OneOf("namespace")), true);
assert_eq!(elem.is("name", NSChoice::OneOf("foo")), false);
assert_eq!(elem.is("name", NSChoice::AnyOf(&["foo", "namespace"])), true);
assert_eq!(elem.is("name", NSChoice::Any), true);
source

pub fn has_ns<'a, NS>(&self, namespace: NS) -> bool
where NS: Into<NSChoice<'a>>,

Returns whether the element has the given namespace.

§Examples
use minidom::{Element, NSChoice};

let elem = Element::builder("name", "namespace").build();

assert_eq!(elem.has_ns("namespace"), true);
assert_eq!(elem.has_ns("wrong"), false);

assert_eq!(elem.has_ns(NSChoice::OneOf("namespace")), true);
assert_eq!(elem.has_ns(NSChoice::OneOf("foo")), false);
assert_eq!(elem.has_ns(NSChoice::AnyOf(&["foo", "namespace"])), true);
assert_eq!(elem.has_ns(NSChoice::Any), true);
source

pub fn from_reader<R>(reader: R) -> Result<Element, Error>
where R: BufRead,

Parse a document from a BufRead.

source

pub fn from_reader_with_prefixes<R, P>( reader: R, prefixes: P, ) -> Result<Element, Error>
where R: BufRead, P: Into<Prefixes>,

Parse a document from a BufRead, allowing Prefixes to be specified. Useful to provide knowledge of namespaces that would have been declared on parent elements not present in the reader.

source

pub fn write_to<W>(&self, writer: &mut W) -> Result<(), Error>
where W: Write,

Output a document to a Writer.

source

pub fn write_to_decl<W>(&self, writer: &mut W) -> Result<(), Error>
where W: Write,

Output a document to a Writer.

source

pub fn to_writer<W>( &self, writer: &mut CustomItemWriter<W, SimpleNamespaces>, ) -> Result<(), Error>
where W: Write,

Output the document to an ItemWriter

source

pub fn to_writer_decl<W>( &self, writer: &mut CustomItemWriter<W, SimpleNamespaces>, ) -> Result<(), Error>
where W: Write,

Output the document to an ItemWriter

source

pub fn write_to_inner<W>( &self, writer: &mut CustomItemWriter<W, SimpleNamespaces>, ) -> Result<(), Error>
where W: Write,

Like write_to() but without the <?xml?> prelude

source

pub fn take_nodes(&mut self) -> Vec<Node>

Extracts all children into a collection.

source

pub fn nodes(&self) -> Iter<'_, Node>

Returns an iterator over references to every child node of this element.

§Examples
use minidom::Element;

let elem: Element = "<root xmlns=\"ns1\">a<c1 />b<c2 />c</root>".parse().unwrap();

let mut iter = elem.nodes();

assert_eq!(iter.next().unwrap().as_text().unwrap(), "a");
assert_eq!(iter.next().unwrap().as_element().unwrap().name(), "c1");
assert_eq!(iter.next().unwrap().as_text().unwrap(), "b");
assert_eq!(iter.next().unwrap().as_element().unwrap().name(), "c2");
assert_eq!(iter.next().unwrap().as_text().unwrap(), "c");
assert_eq!(iter.next(), None);
source

pub fn nodes_mut(&mut self) -> IterMut<'_, Node>

Returns an iterator over mutable references to every child node of this element.

source

pub fn children(&self) -> Children<'_>

Returns an iterator over references to every child element of this element.

§Examples
use minidom::Element;

let elem: Element = "<root xmlns=\"ns1\">hello<child1 xmlns=\"ns1\"/>this<child2 xmlns=\"ns1\"/>is<child3 xmlns=\"ns1\"/>ignored</root>".parse().unwrap();

let mut iter = elem.children();
assert_eq!(iter.next().unwrap().name(), "child1");
assert_eq!(iter.next().unwrap().name(), "child2");
assert_eq!(iter.next().unwrap().name(), "child3");
assert_eq!(iter.next(), None);
source

pub fn children_mut(&mut self) -> ChildrenMut<'_>

Returns an iterator over mutable references to every child element of this element.

source

pub fn texts(&self) -> Texts<'_>

Returns an iterator over references to every text node of this element.

§Examples
use minidom::Element;

let elem: Element = "<root xmlns=\"ns1\">hello<c /> world!</root>".parse().unwrap();

let mut iter = elem.texts();
assert_eq!(iter.next().unwrap(), "hello");
assert_eq!(iter.next().unwrap(), " world!");
assert_eq!(iter.next(), None);
source

pub fn texts_mut(&mut self) -> TextsMut<'_>

Returns an iterator over mutable references to every text node of this element.

source

pub fn append_child(&mut self, child: Element) -> &mut Element

Appends a child node to the Element, returning the appended node.

§Examples
use minidom::Element;

let mut elem = Element::bare("root", "ns1");

assert_eq!(elem.children().count(), 0);

elem.append_child(Element::bare("child", "ns1"));

{
    let mut iter = elem.children();
    assert_eq!(iter.next().unwrap().name(), "child");
    assert_eq!(iter.next(), None);
}

let child = elem.append_child(Element::bare("new", "ns1"));

assert_eq!(child.name(), "new");
source

pub fn append_text_node<S>(&mut self, child: S)
where S: Into<String>,

Appends a text node to an Element.

§Examples
use minidom::Element;

let mut elem = Element::bare("node", "ns1");

assert_eq!(elem.text(), "");

elem.append_text_node("text");

assert_eq!(elem.text(), "text");
source

pub fn append_text<S>(&mut self, text: S)
where S: Into<String>,

Appends a string as plain text to an Element.

If the last child node of the element is a text node, the string will be appended to it. Otherwise, a new text node will be created.

§Examples
use minidom::Element;

let mut elem = Element::bare("node", "ns1");

assert_eq!(elem.text(), "");

elem.append_text_node("text");

elem.append_text(" and more text");

assert_eq!(elem.nodes().count(), 1);
source

pub fn append_node(&mut self, node: Node)

Appends a node to an Element.

§Examples
use minidom::{Element, Node};

let mut elem = Element::bare("node", "ns1");

elem.append_node(Node::Text("hello".to_owned()));

assert_eq!(elem.text(), "hello");
source

pub fn text(&self) -> String

Returns the concatenation of all text nodes in the Element.

§Examples
use minidom::Element;

let elem: Element = "<node xmlns=\"ns1\">hello,<split /> world!</node>".parse().unwrap();

assert_eq!(elem.text(), "hello, world!");
source

pub fn get_child<'a, N, NS>(&self, name: N, namespace: NS) -> Option<&Element>
where N: AsRef<str>, NS: Into<NSChoice<'a>>,

Returns a reference to the first child element with the specific name and namespace, if it exists in the direct descendants of this Element, else returns None.

§Examples
use minidom::{Element, NSChoice};

let elem: Element = r#"<node xmlns="ns"><a/><a xmlns="other_ns" /><b/></node>"#.parse().unwrap();
assert!(elem.get_child("a", "ns").unwrap().is("a", "ns"));
assert!(elem.get_child("a", "other_ns").unwrap().is("a", "other_ns"));
assert!(elem.get_child("b", "ns").unwrap().is("b", "ns"));
assert_eq!(elem.get_child("c", "ns"), None);
assert_eq!(elem.get_child("b", "other_ns"), None);
assert_eq!(elem.get_child("a", "inexistent_ns"), None);
source

pub fn get_child_mut<'a, N, NS>( &mut self, name: N, namespace: NS, ) -> Option<&mut Element>
where N: AsRef<str>, NS: Into<NSChoice<'a>>,

Returns a mutable reference to the first child element with the specific name and namespace, if it exists in the direct descendants of this Element, else returns None.

source

pub fn has_child<'a, N, NS>(&self, name: N, namespace: NS) -> bool
where N: AsRef<str>, NS: Into<NSChoice<'a>>,

Returns whether a specific child with this name and namespace exists in the direct descendants of the Element.

§Examples
use minidom::{Element, NSChoice};

let elem: Element = r#"<node xmlns="ns"><a /><a xmlns="other_ns" /><b /></node>"#.parse().unwrap();
assert_eq!(elem.has_child("a", "other_ns"), true);
assert_eq!(elem.has_child("a", "ns"), true);
assert_eq!(elem.has_child("a", "inexistent_ns"), false);
assert_eq!(elem.has_child("b", "ns"), true);
assert_eq!(elem.has_child("b", "other_ns"), false);
assert_eq!(elem.has_child("b", "inexistent_ns"), false);
source

pub fn remove_child<'a, N, NS>( &mut self, name: N, namespace: NS, ) -> Option<Element>
where N: AsRef<str>, NS: Into<NSChoice<'a>>,

Removes the first child with this name and namespace, if it exists, and returns an Option<Element> containing this child if it succeeds. Returns None if no child matches this name and namespace.

§Examples
use minidom::{Element, NSChoice};

let mut elem: Element = r#"<node xmlns="ns"><a /><a xmlns="other_ns" /><b /></node>"#.parse().unwrap();
assert!(elem.remove_child("a", "ns").unwrap().is("a", "ns"));
assert!(elem.remove_child("a", "ns").is_none());
assert!(elem.remove_child("inexistent", "inexistent").is_none());
source

pub fn unshift_child(&mut self) -> Option<Element>

Remove the leading nodes up to the first child element and return it

Trait Implementations§

source§

impl Clone for Element

source§

fn clone(&self) -> Element

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Element

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'a> From<&'a Element> for String

source§

fn from(elem: &'a Element) -> String

Converts to this type from the input type.
source§

impl From<A> for Element

source§

fn from(elem: A) -> Element

Converts to this type from the input type.
source§

impl From<Abort> for Element

source§

fn from(other: Abort) -> Self

Converts to this type from the input type.
source§

impl From<Action> for Element

source§

fn from(action: Action) -> Element

Converts to this type from the input type.
source§

impl From<Active> for Element

source§

fn from(other: Active) -> Self

Converts to this type from the input type.
source§

impl From<Actor> for Element

source§

fn from(actor: Actor) -> Element

Converts to this type from the input type.
source§

impl From<Affiliation> for Element

source§

fn from(elem: Affiliation) -> Element

Converts to this type from the input type.
source§

impl From<Affiliation> for Element

source§

fn from(elem: Affiliation) -> Element

Converts to this type from the input type.
source§

impl From<Affiliations> for Element

source§

fn from(elem: Affiliations) -> Element

Converts to this type from the input type.
source§

impl From<Affiliations> for Element

source§

fn from(elem: Affiliations) -> Element

Converts to this type from the input type.
source§

impl From<Append> for Element

source§

fn from(elem: Append) -> Element

Converts to this type from the input type.
source§

impl From<Artist> for Element

source§

fn from(elem: Artist) -> Element

Converts to this type from the input type.
source§

impl From<Attention> for Element

source§

fn from(other: Attention) -> Self

Converts to this type from the input type.
source§

impl From<Auth> for Element

source§

fn from(elem: Auth) -> Element

Converts to this type from the input type.
source§

impl From<BindQuery> for Element

source§

fn from(bind: BindQuery) -> Element

Converts to this type from the input type.
source§

impl From<BindResponse> for Element

source§

fn from(bind: BindResponse) -> Element

Converts to this type from the input type.
source§

impl From<Binval> for Element

source§

fn from(elem: Binval) -> Element

Converts to this type from the input type.
source§

impl From<Block> for Element

source§

fn from(elem: Block) -> Element

Converts to this type from the input type.
source§

impl From<Blocked> for Element

source§

fn from(other: Blocked) -> Self

Converts to this type from the input type.
source§

impl From<BlocklistRequest> for Element

source§

fn from(other: BlocklistRequest) -> Self

Converts to this type from the input type.
source§

impl From<BlocklistResult> for Element

source§

fn from(elem: BlocklistResult) -> Element

Converts to this type from the input type.
source§

impl From<Body> for Element

source§

fn from(elem: Body) -> Element

Converts to this type from the input type.
source§

impl From<Bundle> for Element

source§

fn from(elem: Bundle) -> Element

Converts to this type from the input type.
source§

impl From<Candidate> for Element

source§

fn from(elem: Candidate) -> Element

Converts to this type from the input type.
source§

impl From<Candidate> for Element

source§

fn from(elem: Candidate) -> Element

Converts to this type from the input type.
source§

impl From<Candidate> for Element

source§

fn from(elem: Candidate) -> Element

Converts to this type from the input type.
source§

impl From<Caps> for Element

source§

fn from(caps: Caps) -> Element

Converts to this type from the input type.
source§

impl From<Cert> for Element

source§

fn from(elem: Cert) -> Element

Converts to this type from the input type.
source§

impl From<Challenge> for Element

source§

fn from(elem: Challenge) -> Element

Converts to this type from the input type.
source§

impl From<ChatState> for Element

source§

fn from(elem: ChatState) -> Element

Converts to this type from the input type.
source§

impl From<Checksum> for Element

source§

fn from(checksum: Checksum) -> Element

Converts to this type from the input type.
source§

impl From<Close> for Element

source§

fn from(elem: Close) -> Element

Converts to this type from the input type.
source§

impl From<Conference> for Element

source§

fn from(conference: Conference) -> Element

Converts to this type from the input type.
source§

impl From<Conference> for Element

source§

fn from(elem: Conference) -> Element

Converts to this type from the input type.
source§

impl From<Configure> for Element

source§

fn from(elem: Configure) -> Element

Converts to this type from the input type.
source§

impl From<Configure> for Element

source§

fn from(elem: Configure) -> Element

Converts to this type from the input type.
source§

impl From<Content> for Element

source§

fn from(elem: Content) -> Element

Converts to this type from the input type.
source§

impl From<Content> for Element

source§

fn from(elem: Content) -> Element

Converts to this type from the input type.
source§

impl From<Continue> for Element

source§

fn from(elem: Continue) -> Element

Converts to this type from the input type.
source§

impl From<Create> for Element

source§

fn from(elem: Create) -> Element

Converts to this type from the input type.
source§

impl From<Create> for Element

source§

fn from(elem: Create) -> Element

Converts to this type from the input type.
source§

impl From<Credentials> for Element

source§

fn from(elem: Credentials) -> Element

Converts to this type from the input type.
source§

impl From<Data> for Element

source§

fn from(elem: Data) -> Element

Converts to this type from the input type.
source§

impl From<Data> for Element

source§

fn from(elem: Data) -> Element

Converts to this type from the input type.
source§

impl From<Data> for Element

source§

fn from(elem: Data) -> Element

Converts to this type from the input type.
source§

impl From<DataForm> for Element

source§

fn from(form: DataForm) -> Element

Converts to this type from the input type.
source§

impl From<Default> for Element

source§

fn from(elem: Default) -> Element

Converts to this type from the input type.
source§

impl From<Default> for Element

source§

fn from(elem: Default) -> Element

Converts to this type from the input type.
source§

impl From<DefinedCondition> for Element

source§

fn from(elem: DefinedCondition) -> Element

Converts to this type from the input type.
source§

impl From<DefinedCondition> for Element

source§

fn from(elem: DefinedCondition) -> Element

Converts to this type from the input type.
source§

impl From<Delay> for Element

source§

fn from(elem: Delay) -> Element

Converts to this type from the input type.
source§

impl From<Delete> for Element

source§

fn from(elem: Delete) -> Element

Converts to this type from the input type.
source§

impl From<Description> for Element

source§

fn from(desc: Description) -> Element

Converts to this type from the input type.
source§

impl From<Description> for Element

source§

fn from(elem: Description) -> Element

Converts to this type from the input type.
source§

impl From<Description> for Element

source§

fn from(description: Description) -> Element

Converts to this type from the input type.
source§

impl From<Destroy> for Element

source§

fn from(elem: Destroy) -> Element

Converts to this type from the input type.
source§

impl From<Device> for Element

source§

fn from(elem: Device) -> Element

Converts to this type from the input type.
source§

impl From<DeviceList> for Element

source§

fn from(elem: DeviceList) -> Element

Converts to this type from the input type.
source§

impl From<Disable> for Element

source§

fn from(other: Disable) -> Self

Converts to this type from the input type.
source§

impl From<Disable> for Element

source§

fn from(elem: Disable) -> Element

Converts to this type from the input type.
source§

impl From<DiscoInfoQuery> for Element

source§

fn from(elem: DiscoInfoQuery) -> Element

Converts to this type from the input type.
source§

impl From<DiscoInfoResult> for Element

source§

fn from(disco: DiscoInfoResult) -> Element

Converts to this type from the input type.
source§

impl From<DiscoItemsQuery> for Element

source§

fn from(elem: DiscoItemsQuery) -> Element

Converts to this type from the input type.
source§

impl From<DiscoItemsResult> for Element

source§

fn from(elem: DiscoItemsResult) -> Element

Converts to this type from the input type.
source§

impl From<ECaps2> for Element

source§

fn from(elem: ECaps2) -> Element

Converts to this type from the input type.
source§

impl From<Enable> for Element

source§

fn from(other: Enable) -> Self

Converts to this type from the input type.
source§

impl From<Enable> for Element

source§

fn from(elem: Enable) -> Element

Converts to this type from the input type.
source§

impl From<Enabled> for Element

source§

fn from(elem: Enabled) -> Element

Converts to this type from the input type.
source§

impl From<Encrypted> for Element

source§

fn from(elem: Encrypted) -> Element

Converts to this type from the input type.
source§

impl From<Erase> for Element

source§

fn from(elem: Erase) -> Element

Converts to this type from the input type.
source§

impl From<ExplicitMessageEncryption> for Element

source§

fn from(elem: ExplicitMessageEncryption) -> Element

Converts to this type from the input type.
source§

impl From<Failed> for Element

source§

fn from(elem: Failed) -> Element

Converts to this type from the input type.
source§

impl From<Failure> for Element

source§

fn from(failure: Failure) -> Element

Converts to this type from the input type.
source§

impl From<Feature> for Element

source§

fn from(elem: Feature) -> Element

Converts to this type from the input type.
source§

impl From<Feature> for Element

source§

fn from(other: Feature) -> Self

Converts to this type from the input type.
source§

impl From<Field> for Element

source§

fn from(field: Field) -> Element

Converts to this type from the input type.
source§

impl From<File> for Element

source§

fn from(file: File) -> Element

Converts to this type from the input type.
source§

impl From<Fin> for Element

source§

fn from(elem: Fin) -> Element

Converts to this type from the input type.
source§

impl From<Fingerprint> for Element

source§

fn from(elem: Fingerprint) -> Element

Converts to this type from the input type.
source§

impl From<Forwarded> for Element

source§

fn from(elem: Forwarded) -> Element

Converts to this type from the input type.
source§

impl From<Get> for Element

source§

fn from(elem: Get) -> Element

Converts to this type from the input type.
source§

impl From<Group> for Element

source§

fn from(elem: Group) -> Element

Converts to this type from the input type.
source§

impl From<Group> for Element

source§

fn from(elem: Group) -> Element

Converts to this type from the input type.
source§

impl From<Group> for Element

source§

fn from(elem: Group) -> Element

Converts to this type from the input type.
source§

impl From<Handshake> for Element

source§

fn from(elem: Handshake) -> Element

Converts to this type from the input type.
source§

impl From<Hash> for Element

source§

fn from(elem: Hash) -> Element

Converts to this type from the input type.
source§

impl From<Header> for Element

source§

fn from(elem: Header) -> Element

Converts to this type from the input type.
source§

impl From<Header> for Element

source§

fn from(elem: Header) -> Element

Converts to this type from the input type.
source§

impl From<History> for Element

source§

fn from(elem: History) -> Element

Converts to this type from the input type.
source§

impl From<IV> for Element

source§

fn from(elem: IV) -> Element

Converts to this type from the input type.
source§

impl From<Identity> for Element

source§

fn from(elem: Identity) -> Element

Converts to this type from the input type.
source§

impl From<IdentityKey> for Element

source§

fn from(elem: IdentityKey) -> Element

Converts to this type from the input type.
source§

impl From<Idle> for Element

source§

fn from(elem: Idle) -> Element

Converts to this type from the input type.
source§

impl From<Inactive> for Element

source§

fn from(other: Inactive) -> Self

Converts to this type from the input type.
source§

impl From<Info> for Element

source§

fn from(elem: Info) -> Element

Converts to this type from the input type.
source§

impl From<Insert> for Element

source§

fn from(elem: Insert) -> Element

Converts to this type from the input type.
source§

impl From<Iq> for Element

source§

fn from(iq: Iq) -> Element

Converts to this type from the input type.
source§

impl From<Item> for Element

source§

fn from(elem: Item) -> Element

Converts to this type from the input type.
source§

impl From<Item> for Element

source§

fn from(item: Item) -> Element

Converts to this type from the input type.
source§

impl From<Item> for Element

source§

fn from(item: Item) -> Element

Converts to this type from the input type.
source§

impl From<Item> for Element

source§

fn from(elem: Item) -> Element

Converts to this type from the input type.
source§

impl From<Item> for Element

source§

fn from(elem: Item) -> Element

Converts to this type from the input type.
source§

impl From<Item> for Element

source§

fn from(elem: Item) -> Element

Converts to this type from the input type.
source§

impl From<Items> for Element

source§

fn from(elem: Items) -> Element

Converts to this type from the input type.
source§

impl From<JidPrepQuery> for Element

source§

fn from(elem: JidPrepQuery) -> Element

Converts to this type from the input type.
source§

impl From<JidPrepResponse> for Element

source§

fn from(elem: JidPrepResponse) -> Element

Converts to this type from the input type.
source§

impl From<Jingle> for Element

source§

fn from(jingle: Jingle) -> Element

Converts to this type from the input type.
source§

impl From<JingleMI> for Element

source§

fn from(jingle_mi: JingleMI) -> Element

Converts to this type from the input type.
source§

impl From<Join> for Element

source§

fn from(elem: Join) -> Element

Converts to this type from the input type.
source§

impl From<Key> for Element

source§

fn from(elem: Key) -> Element

Converts to this type from the input type.
source§

impl From<Leave> for Element

source§

fn from(other: Leave) -> Self

Converts to this type from the input type.
source§

impl From<Length> for Element

source§

fn from(elem: Length) -> Element

Converts to this type from the input type.
source§

impl From<ListCertsQuery> for Element

source§

fn from(other: ListCertsQuery) -> Self

Converts to this type from the input type.
source§

impl From<ListCertsResponse> for Element

source§

fn from(elem: ListCertsResponse) -> Element

Converts to this type from the input type.
source§

impl From<MediaElement> for Element

source§

fn from(elem: MediaElement) -> Element

Converts to this type from the input type.
source§

impl From<Message> for Element

source§

fn from(message: Message) -> Element

Converts to this type from the input type.
source§

impl From<Metadata> for Element

source§

fn from(elem: Metadata) -> Element

Converts to this type from the input type.
source§

impl From<Mix> for Element

source§

fn from(elem: Mix) -> Element

Converts to this type from the input type.
source§

impl From<MoodEnum> for Element

source§

fn from(elem: MoodEnum) -> Element

Converts to this type from the input type.
source§

impl From<Muc> for Element

source§

fn from(elem: Muc) -> Element

Converts to this type from the input type.
source§

impl From<MucUser> for Element

source§

fn from(elem: MucUser) -> Element

Converts to this type from the input type.
source§

impl From<Name> for Element

source§

fn from(elem: Name) -> Element

Converts to this type from the input type.
source§

impl From<Nick> for Element

source§

fn from(elem: Nick) -> Element

Converts to this type from the input type.
source§

impl From<OccupantId> for Element

source§

fn from(elem: OccupantId) -> Element

Converts to this type from the input type.
source§

impl From<Oob> for Element

source§

fn from(elem: Oob) -> Element

Converts to this type from the input type.
source§

impl From<Open> for Element

source§

fn from(elem: Open) -> Element

Converts to this type from the input type.
source§

impl From<Open> for Element

source§

fn from(elem: Open) -> Element

Converts to this type from the input type.
source§

impl From<Option_> for Element

source§

fn from(elem: Option_) -> Element

Converts to this type from the input type.
source§

impl From<Options> for Element

source§

fn from(elem: Options) -> Element

Converts to this type from the input type.
source§

impl From<OriginId> for Element

source§

fn from(elem: OriginId) -> Element

Converts to this type from the input type.
source§

impl From<Parameter> for Element

source§

fn from(elem: Parameter) -> Element

Converts to this type from the input type.
source§

impl From<Parameter> for Element

source§

fn from(elem: Parameter) -> Element

Converts to this type from the input type.
source§

impl From<Participant> for Element

source§

fn from(elem: Participant) -> Element

Converts to this type from the input type.
source§

impl From<Payload> for Element

source§

fn from(elem: Payload) -> Element

Converts to this type from the input type.
source§

impl From<PayloadType> for Element

source§

fn from(elem: PayloadType) -> Element

Converts to this type from the input type.
source§

impl From<Photo> for Element

source§

fn from(elem: Photo) -> Element

Converts to this type from the input type.
source§

impl From<Photo> for Element

source§

fn from(elem: Photo) -> Element

Converts to this type from the input type.
source§

impl From<Ping> for Element

source§

fn from(other: Ping) -> Self

Converts to this type from the input type.
source§

impl From<PreKeyPublic> for Element

source§

fn from(elem: PreKeyPublic) -> Element

Converts to this type from the input type.
source§

impl From<Prefs> for Element

source§

fn from(prefs: Prefs) -> Element

Converts to this type from the input type.
source§

impl From<Prekeys> for Element

source§

fn from(elem: Prekeys) -> Element

Converts to this type from the input type.
source§

impl From<Presence> for Element

source§

fn from(presence: Presence) -> Element

Converts to this type from the input type.
source§

impl From<Private> for Element

source§

fn from(other: Private) -> Self

Converts to this type from the input type.
source§

impl From<PubKey> for Element

source§

fn from(elem: PubKey) -> Element

Converts to this type from the input type.
source§

impl From<PubKeyData> for Element

source§

fn from(elem: PubKeyData) -> Element

Converts to this type from the input type.
source§

impl From<PubKeyMeta> for Element

source§

fn from(elem: PubKeyMeta) -> Element

Converts to this type from the input type.
source§

impl From<PubKeysMeta> for Element

source§

fn from(elem: PubKeysMeta) -> Element

Converts to this type from the input type.
source§

impl From<PubSub> for Element

source§

fn from(pubsub: PubSub) -> Element

Converts to this type from the input type.
source§

impl From<PubSubEvent> for Element

source§

fn from(event: PubSubEvent) -> Element

Converts to this type from the input type.
source§

impl From<PubSubOwner> for Element

source§

fn from(pubsub: PubSubOwner) -> Element

Converts to this type from the input type.
source§

impl From<Publish> for Element

source§

fn from(elem: Publish) -> Element

Converts to this type from the input type.
source§

impl From<PublishOptions> for Element

source§

fn from(elem: PublishOptions) -> Element

Converts to this type from the input type.
source§

impl From<Purge> for Element

source§

fn from(elem: Purge) -> Element

Converts to this type from the input type.
source§

impl From<Put> for Element

source§

fn from(elem: Put) -> Element

Converts to this type from the input type.
source§

impl From<Query> for Element

source§

fn from(query: Query) -> Element

Converts to this type from the input type.
source§

impl From<Query> for Element

source§

fn from(elem: Query) -> Element

Converts to this type from the input type.
source§

impl From<Query> for Element

source§

fn from(elem: Query) -> Element

Converts to this type from the input type.
source§

impl From<R> for Element

source§

fn from(other: R) -> Self

Converts to this type from the input type.
source§

impl From<Range> for Element

source§

fn from(elem: Range) -> Element

Converts to this type from the input type.
source§

impl From<Rating> for Element

source§

fn from(elem: Rating) -> Element

Converts to this type from the input type.
source§

impl From<Reaction> for Element

source§

fn from(elem: Reaction) -> Element

Converts to this type from the input type.
source§

impl From<Reactions> for Element

source§

fn from(elem: Reactions) -> Element

Converts to this type from the input type.
source§

impl From<Reason> for Element

source§

fn from(reason: Reason) -> Element

Converts to this type from the input type.
source§

impl From<Reason> for Element

source§

fn from(elem: Reason) -> Element

Converts to this type from the input type.
source§

impl From<ReasonElement> for Element

source§

fn from(reason: ReasonElement) -> Element

Converts to this type from the input type.
source§

impl From<Received> for Element

source§

fn from(elem: Received) -> Element

Converts to this type from the input type.
source§

impl From<Received> for Element

source§

fn from(elem: Received) -> Element

Converts to this type from the input type.
source§

impl From<Received> for Element

source§

fn from(elem: Received) -> Element

Converts to this type from the input type.
source§

impl From<Redirect> for Element

source§

fn from(elem: Redirect) -> Element

Converts to this type from the input type.
source§

impl From<Replace> for Element

source§

fn from(elem: Replace) -> Element

Converts to this type from the input type.
source§

impl From<Request> for Element

source§

fn from(other: Request) -> Self

Converts to this type from the input type.
source§

impl From<Resource> for Element

source§

fn from(elem: Resource) -> Element

Converts to this type from the input type.
source§

impl From<Response> for Element

source§

fn from(elem: Response) -> Element

Converts to this type from the input type.
source§

impl From<Result_> for Element

source§

fn from(elem: Result_) -> Element

Converts to this type from the input type.
source§

impl From<Resume> for Element

source§

fn from(elem: Resume) -> Element

Converts to this type from the input type.
source§

impl From<Resumed> for Element

source§

fn from(elem: Resumed) -> Element

Converts to this type from the input type.
source§

impl From<Retract> for Element

source§

fn from(elem: Retract) -> Element

Converts to this type from the input type.
source§

impl From<Revoke> for Element

source§

fn from(elem: Revoke) -> Element

Converts to this type from the input type.
source§

impl From<Roster> for Element

source§

fn from(elem: Roster) -> Element

Converts to this type from the input type.
source§

impl From<RtcpFb> for Element

source§

fn from(elem: RtcpFb) -> Element

Converts to this type from the input type.
source§

impl From<RtcpMux> for Element

source§

fn from(other: RtcpMux) -> Self

Converts to this type from the input type.
source§

impl From<RtpHdrext> for Element

source§

fn from(elem: RtpHdrext) -> Element

Converts to this type from the input type.
source§

impl From<Rtt> for Element

source§

fn from(elem: Rtt) -> Element

Converts to this type from the input type.
source§

impl From<Sent> for Element

source§

fn from(elem: Sent) -> Element

Converts to this type from the input type.
source§

impl From<Service> for Element

source§

fn from(elem: Service) -> Element

Converts to this type from the input type.
source§

impl From<ServicesQuery> for Element

source§

fn from(elem: ServicesQuery) -> Element

Converts to this type from the input type.
source§

impl From<ServicesResult> for Element

source§

fn from(elem: ServicesResult) -> Element

Converts to this type from the input type.
source§

impl From<SetNick> for Element

source§

fn from(elem: SetNick) -> Element

Converts to this type from the input type.
source§

impl From<SetQuery> for Element

source§

fn from(set: SetQuery) -> Element

Converts to this type from the input type.
source§

impl From<SetResult> for Element

source§

fn from(set: SetResult) -> Element

Converts to this type from the input type.
source§

impl From<Show> for Element

source§

fn from(show: Show) -> Element

Converts to this type from the input type.
source§

impl From<SignedPreKeyPublic> for Element

source§

fn from(elem: SignedPreKeyPublic) -> Element

Converts to this type from the input type.
source§

impl From<SignedPreKeySignature> for Element

source§

fn from(elem: SignedPreKeySignature) -> Element

Converts to this type from the input type.
source§

impl From<SlotRequest> for Element

source§

fn from(elem: SlotRequest) -> Element

Converts to this type from the input type.
source§

impl From<SlotResult> for Element

source§

fn from(elem: SlotResult) -> Element

Converts to this type from the input type.
source§

impl From<Source> for Element

source§

fn from(elem: Source) -> Element

Converts to this type from the input type.
source§

impl From<Source> for Element

source§

fn from(elem: Source) -> Element

Converts to this type from the input type.
source§

impl From<StanzaError> for Element

source§

fn from(err: StanzaError) -> Element

Converts to this type from the input type.
source§

impl From<StanzaId> for Element

source§

fn from(elem: StanzaId) -> Element

Converts to this type from the input type.
source§

impl From<Status> for Element

source§

fn from(elem: Status) -> Element

Converts to this type from the input type.
source§

impl From<Storage> for Element

source§

fn from(elem: Storage) -> Element

Converts to this type from the input type.
source§

impl From<Stream> for Element

source§

fn from(elem: Stream) -> Element

Converts to this type from the input type.
source§

impl From<StreamManagement> for Element

source§

fn from(other: StreamManagement) -> Self

Converts to this type from the input type.
source§

impl From<Subject> for Element

source§

fn from(elem: Subject) -> Element

Converts to this type from the input type.
source§

impl From<Subscribe> for Element

source§

fn from(elem: Subscribe) -> Element

Converts to this type from the input type.
source§

impl From<Subscribe> for Element

source§

fn from(elem: Subscribe) -> Element

Converts to this type from the input type.
source§

impl From<SubscribeOptions> for Element

source§

fn from(subscribe_options: SubscribeOptions) -> Element

Converts to this type from the input type.
source§

impl From<SubscriptionElem> for Element

source§

fn from(elem: SubscriptionElem) -> Element

Converts to this type from the input type.
source§

impl From<SubscriptionElem> for Element

source§

fn from(elem: SubscriptionElem) -> Element

Converts to this type from the input type.
source§

impl From<Subscriptions> for Element

source§

fn from(elem: Subscriptions) -> Element

Converts to this type from the input type.
source§

impl From<Subscriptions> for Element

source§

fn from(elem: Subscriptions) -> Element

Converts to this type from the input type.
source§

impl From<Success> for Element

source§

fn from(elem: Success) -> Element

Converts to this type from the input type.
source§

impl From<Text> for Element

source§

fn from(elem: Text) -> Element

Converts to this type from the input type.
source§

impl From<Thread> for Element

source§

fn from(elem: Thread) -> Element

Converts to this type from the input type.
source§

impl From<Thumbnail> for Element

source§

fn from(elem: Thumbnail) -> Element

Converts to this type from the input type.
source§

impl From<TimeQuery> for Element

source§

fn from(other: TimeQuery) -> Self

Converts to this type from the input type.
source§

impl From<TimeResult> for Element

source§

fn from(time: TimeResult) -> Element

Converts to this type from the input type.
source§

impl From<Title> for Element

source§

fn from(elem: Title) -> Element

Converts to this type from the input type.
source§

impl From<Track> for Element

source§

fn from(elem: Track) -> Element

Converts to this type from the input type.
source§

impl From<Transport> for Element

source§

fn from(elem: Transport) -> Element

Converts to this type from the input type.
source§

impl From<Transport> for Element

source§

fn from(elem: Transport) -> Element

Converts to this type from the input type.
source§

impl From<Transport> for Element

source§

fn from(transport: Transport) -> Element

Converts to this type from the input type.
source§

impl From<Transport> for Element

source§

fn from(elem: Transport) -> Element

Converts to this type from the input type.
source§

impl From<Transport> for Element

source§

fn from(transport: Transport) -> Element

Converts to this type from the input type.
source§

impl From<Tune> for Element

source§

fn from(tune: Tune) -> Element

Converts to this type from the input type.
source§

impl From<Type> for Element

source§

fn from(elem: Type) -> Element

Converts to this type from the input type.
source§

impl From<URI> for Element

source§

fn from(elem: URI) -> Element

Converts to this type from the input type.
source§

impl From<Unblock> for Element

source§

fn from(elem: Unblock) -> Element

Converts to this type from the input type.
source§

impl From<Unsubscribe> for Element

source§

fn from(elem: Unsubscribe) -> Element

Converts to this type from the input type.
source§

impl From<UpdateSubscription> for Element

source§

fn from(elem: UpdateSubscription) -> Element

Converts to this type from the input type.
source§

impl From<Uri> for Element

source§

fn from(elem: Uri) -> Element

Converts to this type from the input type.
source§

impl From<Url> for Element

source§

fn from(elem: Url) -> Element

Converts to this type from the input type.
source§

impl From<Users> for Element

source§

fn from(elem: Users) -> Element

Converts to this type from the input type.
source§

impl From<VCardUpdate> for Element

source§

fn from(elem: VCardUpdate) -> Element

Converts to this type from the input type.
source§

impl From<VersionQuery> for Element

source§

fn from(other: VersionQuery) -> Self

Converts to this type from the input type.
source§

impl From<VersionResult> for Element

source§

fn from(elem: VersionResult) -> Element

Converts to this type from the input type.
source§

impl From<Wait> for Element

source§

fn from(elem: Wait) -> Element

Converts to this type from the input type.
source§

impl From<XhtmlIm> for Element

source§

fn from(wrapper: XhtmlIm) -> Element

Converts to this type from the input type.
source§

impl FromStr for Element

§

type Err = Error

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Element, Error>

Parses a string s to return a value of this type. Read more
source§

impl FromXml for Element

§

type Builder = ElementFromEvents

A builder type used to construct the element. Read more
source§

fn from_events( qname: (Namespace, NcName), attrs: XmlMap<String>, ) -> Result<<Element as FromXml>::Builder, FromEventsError>

Attempt to initiate the streamed construction of this struct from XML. Read more
source§

impl Into<Element> for VCard

source§

fn into(self) -> Element

Converts this type into the (usually inferred) input type.
source§

impl IntoXml for Element

§

type EventIter = IntoEvents

The iterator type. Read more
source§

fn into_event_iter(self) -> Result<<Element as IntoXml>::EventIter, Error>

Return an iterator which emits the contents of the struct or enum as serialisable rxml::Event items.
source§

impl PartialEq for Element

source§

fn eq(&self, other: &Element) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<Element> for A

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<A, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Abort

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for Action

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Action, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Active

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for Actor

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Actor, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Affiliation

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Affiliation, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Affiliation

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Affiliation, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Affiliations

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Affiliations, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Affiliations

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Affiliations, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Append

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Append, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Artist

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Artist, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Attention

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for Auth

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Auth, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for BindQuery

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<BindQuery, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for BindResponse

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<BindResponse, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Binval

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Binval, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Block

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Block, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Blocked

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for BlocklistRequest

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for BlocklistResult

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<BlocklistResult, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Body

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Body, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Bundle

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Bundle, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Candidate

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Candidate, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Candidate

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Candidate, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Candidate

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Candidate, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Caps

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Caps, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Cert

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Cert, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Challenge

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Challenge, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for ChatState

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<ChatState, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Checksum

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Checksum, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Close

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Close, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Conference

§

type Error = FromElementError

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

fn try_from(root: Element) -> Result<Conference, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Conference

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Conference, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Configure

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Configure, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Configure

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Configure, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Content

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Content, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Content

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Content, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Continue

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Continue, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Create

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Create, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Create

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Create, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Credentials

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Credentials, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Data

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Data, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Data

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Data, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Data

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Data, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for DataForm

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<DataForm, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Default

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Default, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Default

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Default, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for DefinedCondition

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<DefinedCondition, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for DefinedCondition

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<DefinedCondition, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Delay

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Delay, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Delete

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Delete, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Description

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Description, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Description

§

type Error = Error

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

fn try_from(elem: Element) -> Result<Description, Error>

Performs the conversion.
source§

impl TryFrom<Element> for Description

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Description, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Destroy

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Destroy, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Device

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Device, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for DeviceList

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<DeviceList, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Disable

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Disable, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Disable

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for DiscoInfoQuery

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<DiscoInfoQuery, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for DiscoInfoResult

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<DiscoInfoResult, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for DiscoItemsQuery

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<DiscoItemsQuery, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for DiscoItemsResult

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<DiscoItemsResult, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for ECaps2

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<ECaps2, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Enable

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Enable, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Enable

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for Enabled

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Enabled, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Encrypted

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Encrypted, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Erase

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Erase, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for ExplicitMessageEncryption

§

type Error = FromElementError

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

fn try_from( elem: Element, ) -> Result<ExplicitMessageEncryption, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Failed

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Failed, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Failure

§

type Error = FromElementError

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

fn try_from(root: Element) -> Result<Failure, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Feature

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for Feature

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Feature, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Field

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Field, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for File

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<File, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Fin

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Fin, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Fingerprint

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Fingerprint, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Forwarded

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Forwarded, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Get

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Get, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Group

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Group, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Group

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Group, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Group

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Group, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Handshake

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Handshake, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Hash

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Hash, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Header

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Header, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Header

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Header, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for History

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<History, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for IV

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<IV, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Identity

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Identity, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for IdentityKey

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<IdentityKey, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Idle

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Idle, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Inactive

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for Info

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Info, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Insert

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Insert, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Iq

§

type Error = FromElementError

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

fn try_from(root: Element) -> Result<Iq, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Item

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Item, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Item

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Item, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Item

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Item, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Item

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Item, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Item

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Item, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Item

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Item, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Items

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Items, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for JidPrepQuery

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<JidPrepQuery, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for JidPrepResponse

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<JidPrepResponse, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Jingle

§

type Error = FromElementError

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

fn try_from(root: Element) -> Result<Jingle, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for JingleMI

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<JingleMI, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Join

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Join, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Key

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Key, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Leave

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for Length

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Length, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for ListCertsQuery

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for ListCertsResponse

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<ListCertsResponse, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for MediaElement

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<MediaElement, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Message

§

type Error = FromElementError

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

fn try_from(root: Element) -> Result<Message, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Metadata

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Metadata, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Mix

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Mix, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for MoodEnum

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<MoodEnum, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Muc

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Muc, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for MucUser

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<MucUser, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Name

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Name, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Nick

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Nick, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for OccupantId

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<OccupantId, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Oob

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Oob, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Open

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Open, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Open

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Open, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Option_

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Option_, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Options

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Options, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for OriginId

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<OriginId, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Parameter

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Parameter, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Parameter

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Parameter, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Participant

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Participant, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Payload

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Payload, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for PayloadType

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<PayloadType, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Photo

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Photo, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Photo

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Photo, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Ping

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for PreKeyPublic

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<PreKeyPublic, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Prefs

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Prefs, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Prekeys

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Prekeys, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Presence

§

type Error = FromElementError

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

fn try_from(root: Element) -> Result<Presence, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Private

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for PubKey

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<PubKey, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for PubKeyData

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<PubKeyData, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for PubKeyMeta

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<PubKeyMeta, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for PubKeysMeta

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<PubKeysMeta, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for PubSub

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<PubSub, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for PubSubEvent

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<PubSubEvent, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for PubSubOwner

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<PubSubOwner, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Publish

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Publish, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for PublishOptions

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<PublishOptions, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Purge

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Purge, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Put

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Put, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Query

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Query, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Query

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Query, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Query

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Query, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for R

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for Range

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Range, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Rating

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Rating, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Reaction

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Reaction, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Reactions

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Reactions, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Reason

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Reason, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for ReasonElement

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<ReasonElement, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Received

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Received, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Received

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Received, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Received

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Received, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Redirect

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Redirect, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Replace

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Replace, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Request

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for Resource

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Resource, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Response

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Response, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Result_

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Result_, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Resume

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Resume, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Resumed

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Resumed, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Retract

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Retract, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Revoke

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Revoke, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Roster

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Roster, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for RtcpFb

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<RtcpFb, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for RtcpMux

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for RtpHdrext

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<RtpHdrext, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Rtt

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Rtt, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Sent

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Sent, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Service

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Service, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for ServicesQuery

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<ServicesQuery, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for ServicesResult

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<ServicesResult, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for SetNick

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<SetNick, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for SetQuery

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<SetQuery, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for SetResult

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<SetResult, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for SignedPreKeyPublic

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<SignedPreKeyPublic, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for SignedPreKeySignature

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<SignedPreKeySignature, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for SlotRequest

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<SlotRequest, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for SlotResult

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<SlotResult, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Source

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Source, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Source

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Source, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for StanzaError

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<StanzaError, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for StanzaId

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<StanzaId, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Status

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Status, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Storage

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Storage, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Stream

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Stream, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for StreamManagement

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for Subject

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Subject, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Subscribe

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Subscribe, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Subscribe

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Subscribe, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for SubscribeOptions

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Self, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for SubscriptionElem

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<SubscriptionElem, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for SubscriptionElem

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<SubscriptionElem, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Subscriptions

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Subscriptions, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Subscriptions

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Subscriptions, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Success

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Success, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Text

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Text, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Thread

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Thread, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Thumbnail

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Thumbnail, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for TimeQuery

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for TimeResult

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<TimeResult, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Title

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Title, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Track

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Track, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Transport

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Transport, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Transport

§

type Error = Error

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

fn try_from(elem: Element) -> Result<Transport, Error>

Performs the conversion.
source§

impl TryFrom<Element> for Transport

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Transport, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Transport

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Transport, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Transport

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Transport, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Tune

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Tune, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Type

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Type, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for URI

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<URI, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Unblock

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Unblock, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Unsubscribe

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Unsubscribe, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for UpdateSubscription

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<UpdateSubscription, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Uri

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Uri, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Url

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Url, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Users

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Users, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for VCard

§

type Error = Error

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

fn try_from(value: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for VCardUpdate

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<VCardUpdate, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for VersionQuery

§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for VersionResult

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<VersionResult, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for Wait

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<Wait, FromElementError>

Performs the conversion.
source§

impl TryFrom<Element> for XhtmlIm

§

type Error = FromElementError

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

fn try_from(elem: Element) -> Result<XhtmlIm, FromElementError>

Performs the conversion.
source§

impl Eq for Element

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> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.