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 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(other: A) -> Self

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(other: Action) -> Self

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(other: Affiliation) -> Self

Converts to this type from the input type.
source§

impl From<Affiliation> for Element

source§

fn from(other: Affiliation) -> Self

Converts to this type from the input type.
source§

impl From<Affiliations> for Element

source§

fn from(other: Affiliations) -> Self

Converts to this type from the input type.
source§

impl From<Affiliations> for Element

source§

fn from(other: Affiliations) -> Self

Converts to this type from the input type.
source§

impl From<Append> for Element

source§

fn from(other: Append) -> Self

Converts to this type from the input type.
source§

impl From<Attention> for Element

source§

fn from(_: Attention) -> Element

Converts to this type from the input type.
source§

impl From<Auth> for Element

source§

fn from(other: Auth) -> Self

Converts to this type from the input type.
source§

impl From<BindQuery> for Element

source§

fn from(other: BindQuery) -> Self

Converts to this type from the input type.
source§

impl From<BindResponse> for Element

source§

fn from(other: BindResponse) -> Self

Converts to this type from the input type.
source§

impl From<Block> for Element

source§

fn from(other: Block) -> Self

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(other: BlocklistResult) -> Self

Converts to this type from the input type.
source§

impl From<Bundle> for Element

source§

fn from(other: Bundle) -> Self

Converts to this type from the input type.
source§

impl From<Candidate> for Element

source§

fn from(other: Candidate) -> Self

Converts to this type from the input type.
source§

impl From<Candidate> for Element

source§

fn from(other: Candidate) -> Self

Converts to this type from the input type.
source§

impl From<Candidate> for Element

source§

fn from(other: Candidate) -> Self

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(other: Cert) -> Self

Converts to this type from the input type.
source§

impl From<Challenge> for Element

source§

fn from(other: Challenge) -> Self

Converts to this type from the input type.
source§

impl From<ChatState> for Element

source§

fn from(other: ChatState) -> Self

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(other: Close) -> Self

Converts to this type from the input type.
source§

impl From<Conference> for Element

source§

fn from(other: Conference) -> Self

Converts to this type from the input type.
source§

impl From<Conference> for Element

source§

fn from(other: Conference) -> Self

Converts to this type from the input type.
source§

impl From<Configure> for Element

source§

fn from(other: Configure) -> Self

Converts to this type from the input type.
source§

impl From<Configure> for Element

source§

fn from(other: Configure) -> Self

Converts to this type from the input type.
source§

impl From<Content> for Element

source§

fn from(other: Content) -> Self

Converts to this type from the input type.
source§

impl From<Content> for Element

source§

fn from(other: Content) -> Self

Converts to this type from the input type.
source§

impl From<Continue> for Element

source§

fn from(other: Continue) -> Self

Converts to this type from the input type.
source§

impl From<Create> for Element

source§

fn from(other: Create) -> Self

Converts to this type from the input type.
source§

impl From<Create> for Element

source§

fn from(other: Create) -> Self

Converts to this type from the input type.
source§

impl From<Credentials> for Element

source§

fn from(other: Credentials) -> Self

Converts to this type from the input type.
source§

impl From<Data> for Element

source§

fn from(other: Data) -> Self

Converts to this type from the input type.
source§

impl From<Data> for Element

source§

fn from(other: Data) -> Self

Converts to this type from the input type.
source§

impl From<Data> for Element

source§

fn from(other: Data) -> Self

Converts to this type from the input type.
source§

impl From<DataForm> for Element

source§

fn from(other: DataForm) -> Self

Converts to this type from the input type.
source§

impl From<Default> for Element

source§

fn from(other: Default) -> Self

Converts to this type from the input type.
source§

impl From<Default> for Element

source§

fn from(other: Default) -> Self

Converts to this type from the input type.
source§

impl From<DefinedCondition> for Element

source§

fn from(other: DefinedCondition) -> Self

Converts to this type from the input type.
source§

impl From<DefinedCondition> for Element

source§

fn from(other: DefinedCondition) -> Self

Converts to this type from the input type.
source§

impl From<Delay> for Element

source§

fn from(other: Delay) -> Self

Converts to this type from the input type.
source§

impl From<Delete> for Element

source§

fn from(other: Delete) -> Self

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<Description> for Element

source§

fn from(other: Description) -> Self

Converts to this type from the input type.
source§

impl From<Description> for Element

source§

fn from(other: Description) -> Self

Converts to this type from the input type.
source§

impl From<Destroy> for Element

source§

fn from(other: Destroy) -> Self

Converts to this type from the input type.
source§

impl From<Device> for Element

source§

fn from(other: Device) -> Self

Converts to this type from the input type.
source§

impl From<DeviceList> for Element

source§

fn from(other: DeviceList) -> Self

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(other: Disable) -> Self

Converts to this type from the input type.
source§

impl From<DiscoInfoQuery> for Element

source§

fn from(other: DiscoInfoQuery) -> Self

Converts to this type from the input type.
source§

impl From<DiscoInfoResult> for Element

source§

fn from(other: DiscoInfoResult) -> Self

Converts to this type from the input type.
source§

impl From<DiscoItemsQuery> for Element

source§

fn from(other: DiscoItemsQuery) -> Self

Converts to this type from the input type.
source§

impl From<DiscoItemsResult> for Element

source§

fn from(other: DiscoItemsResult) -> Self

Converts to this type from the input type.
source§

impl From<ECaps2> for Element

source§

fn from(other: ECaps2) -> Self

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(other: Enable) -> Self

Converts to this type from the input type.
source§

impl From<Enabled> for Element

source§

fn from(other: Enabled) -> Self

Converts to this type from the input type.
source§

impl From<Encrypted> for Element

source§

fn from(other: Encrypted) -> Self

Converts to this type from the input type.
source§

impl From<Erase> for Element

source§

fn from(other: Erase) -> Self

Converts to this type from the input type.
source§

impl From<ExplicitMessageEncryption> for Element

source§

fn from(other: ExplicitMessageEncryption) -> Self

Converts to this type from the input type.
source§

impl From<Failed> for Element

source§

fn from(other: Failed) -> Self

Converts to this type from the input type.
source§

impl From<Failure> for Element

source§

fn from(other: Failure) -> Self

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<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(other: Field) -> Self

Converts to this type from the input type.
source§

impl From<File> for Element

source§

fn from(other: File) -> Self

Converts to this type from the input type.
source§

impl From<Fin> for Element

source§

fn from(other: Fin) -> Self

Converts to this type from the input type.
source§

impl From<Fingerprint> for Element

source§

fn from(other: Fingerprint) -> Self

Converts to this type from the input type.
source§

impl From<First> for Element

source§

fn from(other: First) -> Self

Converts to this type from the input type.
source§

impl From<Forwarded> for Element

source§

fn from(other: Forwarded) -> Self

Converts to this type from the input type.
source§

impl From<Get> for Element

source§

fn from(other: Get) -> Self

Converts to this type from the input type.
source§

impl From<Group> for Element

source§

fn from(other: Group) -> Self

Converts to this type from the input type.
source§

impl From<Group> for Element

source§

fn from(other: Group) -> Self

Converts to this type from the input type.
source§

impl From<Group> for Element

source§

fn from(other: Group) -> Self

Converts to this type from the input type.
source§

impl From<Handshake> for Element

source§

fn from(other: Handshake) -> Self

Converts to this type from the input type.
source§

impl From<Hash> for Element

source§

fn from(other: Hash) -> Self

Converts to this type from the input type.
source§

impl From<Header> for Element

source§

fn from(other: Header) -> Self

Converts to this type from the input type.
source§

impl From<Header> for Element

source§

fn from(other: Header) -> Self

Converts to this type from the input type.
source§

impl From<History> for Element

source§

fn from(other: History) -> Self

Converts to this type from the input type.
source§

impl From<IV> for Element

source§

fn from(other: IV) -> Self

Converts to this type from the input type.
source§

impl From<Identity> for Element

source§

fn from(other: Identity) -> Self

Converts to this type from the input type.
source§

impl From<IdentityKey> for Element

source§

fn from(other: IdentityKey) -> Self

Converts to this type from the input type.
source§

impl From<Idle> for Element

source§

fn from(other: Idle) -> Self

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(other: Info) -> Self

Converts to this type from the input type.
source§

impl From<Insert> for Element

source§

fn from(other: Insert) -> Self

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(other: Item) -> Self

Converts to this type from the input type.
source§

impl From<Item> for Element

source§

fn from(other: Item) -> Self

Converts to this type from the input type.
source§

impl From<Item> for Element

source§

fn from(other: Item) -> Self

Converts to this type from the input type.
source§

impl From<Item> for Element

source§

fn from(other: Item) -> Self

Converts to this type from the input type.
source§

impl From<Item> for Element

source§

fn from(other: Item) -> Self

Converts to this type from the input type.
source§

impl From<Item> for Element

source§

fn from(other: Item) -> Self

Converts to this type from the input type.
source§

impl From<Items> for Element

source§

fn from(other: Items) -> Self

Converts to this type from the input type.
source§

impl From<JidPrepQuery> for Element

source§

fn from(other: JidPrepQuery) -> Self

Converts to this type from the input type.
source§

impl From<JidPrepResponse> for Element

source§

fn from(other: JidPrepResponse) -> Self

Converts to this type from the input type.
source§

impl From<Jingle> for Element

source§

fn from(other: Jingle) -> Self

Converts to this type from the input type.
source§

impl From<JingleMI> for Element

source§

fn from(other: JingleMI) -> Self

Converts to this type from the input type.
source§

impl From<Join> for Element

source§

fn from(other: Join) -> Self

Converts to this type from the input type.
source§

impl From<Key> for Element

source§

fn from(other: Key) -> Self

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<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(other: ListCertsResponse) -> Self

Converts to this type from the input type.
source§

impl From<MediaElement> for Element

source§

fn from(other: MediaElement) -> Self

Converts to this type from the input type.
source§

impl From<Message> for Element

source§

fn from(other: Message) -> Self

Converts to this type from the input type.
source§

impl From<Metadata> for Element

source§

fn from(other: Metadata) -> Self

Converts to this type from the input type.
source§

impl From<Mix> for Element

source§

fn from(other: Mix) -> Self

Converts to this type from the input type.
source§

impl From<MoodEnum> for Element

source§

fn from(other: MoodEnum) -> Self

Converts to this type from the input type.
source§

impl From<Muc> for Element

source§

fn from(other: Muc) -> Self

Converts to this type from the input type.
source§

impl From<MucUser> for Element

source§

fn from(other: MucUser) -> Self

Converts to this type from the input type.
source§

impl From<Name> for Element

source§

fn from(other: Name) -> Self

Converts to this type from the input type.
source§

impl From<Nick> for Element

source§

fn from(other: Nick) -> Self

Converts to this type from the input type.
source§

impl From<OccupantId> for Element

source§

fn from(other: OccupantId) -> Self

Converts to this type from the input type.
source§

impl From<Open> for Element

source§

fn from(other: Open) -> Self

Converts to this type from the input type.
source§

impl From<Open> for Element

source§

fn from(other: Open) -> Self

Converts to this type from the input type.
source§

impl From<Option_> for Element

source§

fn from(other: Option_) -> Self

Converts to this type from the input type.
source§

impl From<Options> for Element

source§

fn from(other: Options) -> Self

Converts to this type from the input type.
source§

impl From<OriginId> for Element

source§

fn from(other: OriginId) -> Self

Converts to this type from the input type.
source§

impl From<Parameter> for Element

source§

fn from(other: Parameter) -> Self

Converts to this type from the input type.
source§

impl From<Parameter> for Element

source§

fn from(other: Parameter) -> Self

Converts to this type from the input type.
source§

impl From<Participant> for Element

source§

fn from(other: Participant) -> Self

Converts to this type from the input type.
source§

impl From<Payload> for Element

source§

fn from(other: Payload) -> Self

Converts to this type from the input type.
source§

impl From<PayloadType> for Element

source§

fn from(other: PayloadType) -> Self

Converts to this type from the input type.
source§

impl From<Photo> for Element

source§

fn from(other: Photo) -> Self

Converts to this type from the input type.
source§

impl From<Photo> for Element

source§

fn from(other: Photo) -> Self

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(other: PreKeyPublic) -> Self

Converts to this type from the input type.
source§

impl From<Prefs> for Element

source§

fn from(other: Prefs) -> Self

Converts to this type from the input type.
source§

impl From<Prekeys> for Element

source§

fn from(other: Prekeys) -> Self

Converts to this type from the input type.
source§

impl From<Presence> for Element

source§

fn from(other: Presence) -> Self

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(other: PubKey) -> Self

Converts to this type from the input type.
source§

impl From<PubKeyMeta> for Element

source§

fn from(other: PubKeyMeta) -> Self

Converts to this type from the input type.
source§

impl From<PubKeysMeta> for Element

source§

fn from(other: PubKeysMeta) -> Self

Converts to this type from the input type.
source§

impl From<PubSub> for Element

source§

fn from(other: PubSub) -> Self

Converts to this type from the input type.
source§

impl From<PubSubEvent> for Element

source§

fn from(other: PubSubEvent) -> Self

Converts to this type from the input type.
source§

impl From<PubSubEventItem> for Element

source§

fn from(other: PubSubEventItem) -> Self

Converts to this type from the input type.
source§

impl From<PubSubOwner> for Element

source§

fn from(other: PubSubOwner) -> Self

Converts to this type from the input type.
source§

impl From<Publish> for Element

source§

fn from(other: Publish) -> Self

Converts to this type from the input type.
source§

impl From<PublishOptions> for Element

source§

fn from(other: PublishOptions) -> Self

Converts to this type from the input type.
source§

impl From<Purge> for Element

source§

fn from(other: Purge) -> Self

Converts to this type from the input type.
source§

impl From<Put> for Element

source§

fn from(other: Put) -> Self

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(other: Query) -> Self

Converts to this type from the input type.
source§

impl From<Query> for Element

source§

fn from(other: Query) -> Self

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(other: Range) -> Self

Converts to this type from the input type.
source§

impl From<Reaction> for Element

source§

fn from(other: Reaction) -> Self

Converts to this type from the input type.
source§

impl From<Reactions> for Element

source§

fn from(other: Reactions) -> Self

Converts to this type from the input type.
source§

impl From<Reason> for Element

source§

fn from(other: Reason) -> Self

Converts to this type from the input type.
source§

impl From<Reason> for Element

source§

fn from(other: Reason) -> Self

Converts to this type from the input type.
source§

impl From<ReasonElement> for Element

source§

fn from(other: ReasonElement) -> Self

Converts to this type from the input type.
source§

impl From<Received> for Element

source§

fn from(other: Received) -> Self

Converts to this type from the input type.
source§

impl From<Received> for Element

source§

fn from(other: Received) -> Self

Converts to this type from the input type.
source§

impl From<Received> for Element

source§

fn from(other: Received) -> Self

Converts to this type from the input type.
source§

impl From<Redirect> for Element

source§

fn from(other: Redirect) -> Self

Converts to this type from the input type.
source§

impl From<Replace> for Element

source§

fn from(other: Replace) -> Self

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(other: Resource) -> Self

Converts to this type from the input type.
source§

impl From<Response> for Element

source§

fn from(other: Response) -> Self

Converts to this type from the input type.
source§

impl From<Result_> for Element

source§

fn from(other: Result_) -> Self

Converts to this type from the input type.
source§

impl From<Resume> for Element

source§

fn from(other: Resume) -> Self

Converts to this type from the input type.
source§

impl From<Resumed> for Element

source§

fn from(other: Resumed) -> Self

Converts to this type from the input type.
source§

impl From<Retract> for Element

source§

fn from(other: Retract) -> Self

Converts to this type from the input type.
source§

impl From<Revoke> for Element

source§

fn from(other: Revoke) -> Self

Converts to this type from the input type.
source§

impl From<Roster> for Element

source§

fn from(other: Roster) -> Self

Converts to this type from the input type.
source§

impl From<RtcpFb> for Element

source§

fn from(other: RtcpFb) -> Self

Converts to this type from the input type.
source§

impl From<RtpHdrext> for Element

source§

fn from(other: RtpHdrext) -> Self

Converts to this type from the input type.
source§

impl From<Rtt> for Element

source§

fn from(other: Rtt) -> Self

Converts to this type from the input type.
source§

impl From<Sent> for Element

source§

fn from(other: Sent) -> Self

Converts to this type from the input type.
source§

impl From<Service> for Element

source§

fn from(other: Service) -> Self

Converts to this type from the input type.
source§

impl From<ServicesQuery> for Element

source§

fn from(other: ServicesQuery) -> Self

Converts to this type from the input type.
source§

impl From<ServicesResult> for Element

source§

fn from(other: ServicesResult) -> Self

Converts to this type from the input type.
source§

impl From<SetNick> for Element

source§

fn from(other: SetNick) -> Self

Converts to this type from the input type.
source§

impl From<SetQuery> for Element

source§

fn from(other: SetQuery) -> Self

Converts to this type from the input type.
source§

impl From<SetResult> for Element

source§

fn from(other: SetResult) -> Self

Converts to this type from the input type.
source§

impl From<SignedPreKeyPublic> for Element

source§

fn from(other: SignedPreKeyPublic) -> Self

Converts to this type from the input type.
source§

impl From<SignedPreKeySignature> for Element

source§

fn from(other: SignedPreKeySignature) -> Self

Converts to this type from the input type.
source§

impl From<SlotRequest> for Element

source§

fn from(other: SlotRequest) -> Self

Converts to this type from the input type.
source§

impl From<SlotResult> for Element

source§

fn from(other: SlotResult) -> Self

Converts to this type from the input type.
source§

impl From<Source> for Element

source§

fn from(other: Source) -> Self

Converts to this type from the input type.
source§

impl From<StanzaError> for Element

source§

fn from(other: StanzaError) -> Self

Converts to this type from the input type.
source§

impl From<StanzaId> for Element

source§

fn from(other: StanzaId) -> Self

Converts to this type from the input type.
source§

impl From<Storage> for Element

source§

fn from(other: Storage) -> Self

Converts to this type from the input type.
source§

impl From<Stream> for Element

source§

fn from(other: Stream) -> Self

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<Subscribe> for Element

source§

fn from(other: Subscribe) -> Self

Converts to this type from the input type.
source§

impl From<Subscribe> for Element

source§

fn from(other: Subscribe) -> Self

Converts to this type from the input type.
source§

impl From<SubscribeOptions> for Element

source§

fn from(other: SubscribeOptions) -> Self

Converts to this type from the input type.
source§

impl From<SubscriptionElem> for Element

source§

fn from(other: SubscriptionElem) -> Self

Converts to this type from the input type.
source§

impl From<SubscriptionElem> for Element

source§

fn from(other: SubscriptionElem) -> Self

Converts to this type from the input type.
source§

impl From<Subscriptions> for Element

source§

fn from(other: Subscriptions) -> Self

Converts to this type from the input type.
source§

impl From<Subscriptions> for Element

source§

fn from(other: Subscriptions) -> Self

Converts to this type from the input type.
source§

impl From<Success> for Element

source§

fn from(other: Success) -> Self

Converts to this type from the input type.
source§

impl From<Text> for Element

source§

fn from(other: Text) -> Self

Converts to this type from the input type.
source§

impl From<Thumbnail> for Element

source§

fn from(other: Thumbnail) -> Self

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(other: TimeResult) -> Self

Converts to this type from the input type.
source§

impl From<Transport> for Element

source§

fn from(other: Transport) -> Self

Converts to this type from the input type.
source§

impl From<Transport> for Element

source§

fn from(other: Transport) -> Self

Converts to this type from the input type.
source§

impl From<Transport> for Element

source§

fn from(other: Transport) -> Self

Converts to this type from the input type.
source§

impl From<Transport> for Element

source§

fn from(other: Transport) -> Self

Converts to this type from the input type.
source§

impl From<Transport> for Element

source§

fn from(other: Transport) -> Self

Converts to this type from the input type.
source§

impl From<TransportState> for Element

source§

fn from(other: TransportState) -> Self

Converts to this type from the input type.
source§

impl From<Tune> for Element

source§

fn from(other: Tune) -> Self

Converts to this type from the input type.
source§

impl From<URI> for Element

source§

fn from(other: URI) -> Self

Converts to this type from the input type.
source§

impl From<Unblock> for Element

source§

fn from(other: Unblock) -> Self

Converts to this type from the input type.
source§

impl From<Unsubscribe> for Element

source§

fn from(other: Unsubscribe) -> Self

Converts to this type from the input type.
source§

impl From<UpdateSubscription> for Element

source§

fn from(other: UpdateSubscription) -> Self

Converts to this type from the input type.
source§

impl From<Url> for Element

source§

fn from(other: Url) -> Self

Converts to this type from the input type.
source§

impl From<Users> for Element

source§

fn from(other: Users) -> Self

Converts to this type from the input type.
source§

impl From<VCard> for Element

source§

fn from(other: VCard) -> Self

Converts to this type from the input type.
source§

impl From<VCardUpdate> for Element

source§

fn from(other: VCardUpdate) -> Self

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(other: VersionResult) -> Self

Converts to this type from the input type.
source§

impl From<Wait> for Element

source§

fn from(other: Wait) -> Self

Converts to this type from the input type.
source§

impl From<XhtmlIm> for Element

source§

fn from(other: XhtmlIm) -> Self

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 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 = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Abort

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Action

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Active

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Actor

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Affiliation

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Affiliation

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Affiliations

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Affiliations

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Append

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Attention

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Auth

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for BindQuery

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for BindResponse

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Block

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Blocked

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for BlocklistRequest

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for BlocklistResult

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Bundle

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Candidate

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Candidate

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Candidate

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Caps

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Cert

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Challenge

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for ChatState

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Checksum

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Close

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Conference

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Conference

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Configure

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Configure

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Content

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Content

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Continue

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Create

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Create

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Credentials

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Data

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Data

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Data

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for DataForm

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Default

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Default

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for DefinedCondition

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for DefinedCondition

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Delay

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Delete

§

type Error = Error

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

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

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 = Error

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

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

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(residual: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for Destroy

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Device

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for DeviceList

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Disable

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Disable

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for DiscoInfoQuery

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for DiscoInfoResult

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for DiscoItemsQuery

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for DiscoItemsResult

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for ECaps2

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Enable

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Enable

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Enabled

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Encrypted

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Erase

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for ExplicitMessageEncryption

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Failed

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Failure

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Feature

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Feature

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Field

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for File

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Fin

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Fingerprint

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for First

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Forwarded

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Get

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Group

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Group

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Group

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Handshake

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Hash

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Header

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Header

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for History

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for IV

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Identity

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for IdentityKey

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Idle

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Inactive

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Info

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Insert

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Iq

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Item

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Item

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Item

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Item

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Item

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Item

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Items

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for JidPrepQuery

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for JidPrepResponse

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Jingle

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for JingleMI

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Join

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Key

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Leave

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for ListCertsQuery

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for ListCertsResponse

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for MediaElement

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Message

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Metadata

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Mix

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for MoodEnum

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Muc

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for MucUser

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Name

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Nick

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for OccupantId

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Open

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Open

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Option_

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Options

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for OriginId

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Parameter

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Parameter

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Participant

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Payload

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for PayloadType

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Photo

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Photo

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Ping

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for PreKeyPublic

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Prefs

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Prekeys

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Presence

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Private

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for PubKey

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for PubKeyMeta

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for PubKeysMeta

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for PubSub

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for PubSubEvent

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for PubSubEventItem

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for PubSubOwner

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Publish

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for PublishOptions

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Purge

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Put

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Query

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Query

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Query

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for R

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Range

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Reaction

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Reactions

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Reason

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Reason

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for ReasonElement

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Received

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Received

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Received

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Redirect

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Replace

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Request

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Resource

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Response

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Result_

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Resume

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Resumed

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Retract

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Revoke

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Roster

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for RtcpFb

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for RtpHdrext

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Rtt

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Sent

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Service

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for ServicesQuery

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for ServicesResult

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for SetNick

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for SetQuery

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for SetResult

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for SignedPreKeyPublic

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for SignedPreKeySignature

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for SlotRequest

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for SlotResult

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Source

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for StanzaError

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for StanzaId

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Storage

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Stream

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for StreamManagement

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Subscribe

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Subscribe

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for SubscribeOptions

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for SubscriptionElem

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for SubscriptionElem

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Subscriptions

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Subscriptions

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Success

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Text

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Thumbnail

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for TimeQuery

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for TimeResult

§

type Error = Error

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

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

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(residual: Element) -> Result<Self, Self::Error>

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(residual: Element) -> Result<Self, Self::Error>

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(residual: Element) -> Result<Self, Self::Error>

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(residual: Element) -> Result<Self, Self::Error>

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(residual: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for TransportState

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Tune

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for URI

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Unblock

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Unsubscribe

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for UpdateSubscription

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Url

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Users

§

type Error = Error

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

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

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(residual: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Element> for VCardUpdate

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for VersionQuery

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for VersionResult

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for Wait

§

type Error = Error

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

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

Performs the conversion.
source§

impl TryFrom<Element> for XhtmlIm

§

type Error = Error

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

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

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

source§

fn decode(value: T) -> T

Transform the destructured value further toward the field type.
source§

fn encode(value: T) -> T

Transform the field type back to something which can be structured into XML.
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.