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
impl Element
sourcepub fn builder<S, NS>(name: S, namespace: NS) -> ElementBuilder
pub fn builder<S, NS>(name: S, namespace: NS) -> ElementBuilder
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");
sourcepub fn bare<S, NS>(name: S, namespace: NS) -> Element
pub fn bare<S, NS>(name: S, namespace: NS) -> Element
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(), "");
sourcepub fn name(&self) -> &str
pub fn name(&self) -> &str
Returns a reference to the local name of this element (that is, without a possible prefix).
sourcepub fn attr(&self, name: &str) -> Option<&str>
pub fn attr(&self, name: &str) -> Option<&str>
Returns a reference to the value of the given attribute, if it exists, else None
.
sourcepub fn attrs(&self) -> Attrs<'_>
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);
sourcepub fn attrs_mut(&mut self) -> AttrsMut<'_>
pub fn attrs_mut(&mut self) -> AttrsMut<'_>
Returns an iterator over the attributes of this element, with the value being a mutable reference.
sourcepub fn is<'a, N, NS>(&self, name: N, namespace: NS) -> bool
pub fn is<'a, N, NS>(&self, name: N, namespace: NS) -> bool
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);
sourcepub fn has_ns<'a, NS>(&self, namespace: NS) -> bool
pub fn has_ns<'a, NS>(&self, namespace: NS) -> bool
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);
sourcepub fn from_reader<R>(reader: R) -> Result<Element, Error>where
R: BufRead,
pub fn from_reader<R>(reader: R) -> Result<Element, Error>where
R: BufRead,
Parse a document from a BufRead
.
sourcepub fn from_reader_with_prefixes<R, P>(
reader: R,
prefixes: P,
) -> Result<Element, Error>
pub fn from_reader_with_prefixes<R, P>( reader: R, prefixes: P, ) -> Result<Element, Error>
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.
sourcepub fn write_to<W>(&self, writer: &mut W) -> Result<(), Error>where
W: Write,
pub fn write_to<W>(&self, writer: &mut W) -> Result<(), Error>where
W: Write,
Output a document to a Writer
.
sourcepub fn write_to_decl<W>(&self, writer: &mut W) -> Result<(), Error>where
W: Write,
pub fn write_to_decl<W>(&self, writer: &mut W) -> Result<(), Error>where
W: Write,
Output a document to a Writer
.
sourcepub fn to_writer<W>(
&self,
writer: &mut CustomItemWriter<W, SimpleNamespaces>,
) -> Result<(), Error>where
W: Write,
pub fn to_writer<W>(
&self,
writer: &mut CustomItemWriter<W, SimpleNamespaces>,
) -> Result<(), Error>where
W: Write,
Output the document to an ItemWriter
sourcepub fn to_writer_decl<W>(
&self,
writer: &mut CustomItemWriter<W, SimpleNamespaces>,
) -> Result<(), Error>where
W: Write,
pub fn to_writer_decl<W>(
&self,
writer: &mut CustomItemWriter<W, SimpleNamespaces>,
) -> Result<(), Error>where
W: Write,
Output the document to an ItemWriter
sourcepub fn write_to_inner<W>(
&self,
writer: &mut CustomItemWriter<W, SimpleNamespaces>,
) -> Result<(), Error>where
W: Write,
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
sourcepub fn take_nodes(&mut self) -> Vec<Node>
pub fn take_nodes(&mut self) -> Vec<Node>
Extracts all children into a collection.
sourcepub fn nodes(&self) -> Iter<'_, Node>
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);
sourcepub fn nodes_mut(&mut self) -> IterMut<'_, Node>
pub fn nodes_mut(&mut self) -> IterMut<'_, Node>
Returns an iterator over mutable references to every child node of this element.
sourcepub fn children(&self) -> Children<'_>
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);
sourcepub fn children_mut(&mut self) -> ChildrenMut<'_>
pub fn children_mut(&mut self) -> ChildrenMut<'_>
Returns an iterator over mutable references to every child element of this element.
sourcepub fn texts(&self) -> Texts<'_>
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);
sourcepub fn texts_mut(&mut self) -> TextsMut<'_>
pub fn texts_mut(&mut self) -> TextsMut<'_>
Returns an iterator over mutable references to every text node of this element.
sourcepub fn append_child(&mut self, child: Element) -> &mut Element
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");
sourcepub fn append_text_node<S>(&mut self, child: S)
pub fn append_text_node<S>(&mut self, child: S)
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");
sourcepub fn append_text<S>(&mut self, text: S)
pub fn append_text<S>(&mut self, text: S)
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);
sourcepub fn append_node(&mut self, node: Node)
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");
sourcepub fn text(&self) -> String
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!");
sourcepub fn get_child<'a, N, NS>(&self, name: N, namespace: NS) -> Option<&Element>
pub fn get_child<'a, N, NS>(&self, name: N, namespace: NS) -> Option<&Element>
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);
sourcepub fn get_child_mut<'a, N, NS>(
&mut self,
name: N,
namespace: NS,
) -> Option<&mut Element>
pub fn get_child_mut<'a, N, NS>( &mut self, name: N, namespace: NS, ) -> Option<&mut Element>
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
.
sourcepub fn has_child<'a, N, NS>(&self, name: N, namespace: NS) -> bool
pub fn has_child<'a, N, NS>(&self, name: N, namespace: NS) -> bool
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);
sourcepub fn remove_child<'a, N, NS>(
&mut self,
name: N,
namespace: NS,
) -> Option<Element>
pub fn remove_child<'a, N, NS>( &mut self, name: N, namespace: NS, ) -> Option<Element>
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());
sourcepub fn unshift_child(&mut self) -> Option<Element>
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 From<Affiliation> for Element
impl From<Affiliation> for Element
source§fn from(other: Affiliation) -> Self
fn from(other: Affiliation) -> Self
source§impl From<Affiliation> for Element
impl From<Affiliation> for Element
source§fn from(other: Affiliation) -> Self
fn from(other: Affiliation) -> Self
source§impl From<Affiliations> for Element
impl From<Affiliations> for Element
source§fn from(elem: Affiliations) -> Element
fn from(elem: Affiliations) -> Element
source§impl From<Affiliations> for Element
impl From<Affiliations> for Element
source§fn from(elem: Affiliations) -> Element
fn from(elem: Affiliations) -> Element
source§impl From<BindFeature> for Element
impl From<BindFeature> for Element
source§fn from(bind: BindFeature) -> Element
fn from(bind: BindFeature) -> Element
source§impl From<BindResponse> for Element
impl From<BindResponse> for Element
source§fn from(bind: BindResponse) -> Element
fn from(bind: BindResponse) -> Element
source§impl From<BlocklistRequest> for Element
impl From<BlocklistRequest> for Element
source§fn from(other: BlocklistRequest) -> Self
fn from(other: BlocklistRequest) -> Self
source§impl From<BlocklistResult> for Element
impl From<BlocklistResult> for Element
source§fn from(elem: BlocklistResult) -> Element
fn from(elem: BlocklistResult) -> Element
source§impl From<Conference> for Element
impl From<Conference> for Element
source§fn from(elem: Conference) -> Element
fn from(elem: Conference) -> Element
source§impl From<Conference> for Element
impl From<Conference> for Element
source§fn from(conference: Conference) -> Element
fn from(conference: Conference) -> Element
source§impl From<Credentials> for Element
impl From<Credentials> for Element
source§fn from(elem: Credentials) -> Element
fn from(elem: Credentials) -> Element
source§impl From<DefinedCondition> for Element
impl From<DefinedCondition> for Element
source§fn from(elem: DefinedCondition) -> Element
fn from(elem: DefinedCondition) -> Element
source§impl From<DefinedCondition> for Element
impl From<DefinedCondition> for Element
source§fn from(elem: DefinedCondition) -> Element
fn from(elem: DefinedCondition) -> Element
source§impl From<Description> for Element
impl From<Description> for Element
source§fn from(description: Description) -> Element
fn from(description: Description) -> Element
source§impl From<Description> for Element
impl From<Description> for Element
source§fn from(desc: Description) -> Element
fn from(desc: Description) -> Element
source§impl From<Description> for Element
impl From<Description> for Element
source§fn from(elem: Description) -> Element
fn from(elem: Description) -> Element
source§impl From<DeviceList> for Element
impl From<DeviceList> for Element
source§fn from(elem: DeviceList) -> Element
fn from(elem: DeviceList) -> Element
source§impl From<DiscoInfoQuery> for Element
impl From<DiscoInfoQuery> for Element
source§fn from(other: DiscoInfoQuery) -> Self
fn from(other: DiscoInfoQuery) -> Self
source§impl From<DiscoInfoResult> for Element
impl From<DiscoInfoResult> for Element
source§fn from(disco: DiscoInfoResult) -> Element
fn from(disco: DiscoInfoResult) -> Element
source§impl From<DiscoItemsQuery> for Element
impl From<DiscoItemsQuery> for Element
source§fn from(elem: DiscoItemsQuery) -> Element
fn from(elem: DiscoItemsQuery) -> Element
source§impl From<DiscoItemsResult> for Element
impl From<DiscoItemsResult> for Element
source§fn from(elem: DiscoItemsResult) -> Element
fn from(elem: DiscoItemsResult) -> Element
source§impl From<ExplicitMessageEncryption> for Element
impl From<ExplicitMessageEncryption> for Element
source§fn from(other: ExplicitMessageEncryption) -> Self
fn from(other: ExplicitMessageEncryption) -> Self
source§impl From<FastResponse> for Element
impl From<FastResponse> for Element
source§fn from(other: FastResponse) -> Self
fn from(other: FastResponse) -> Self
source§impl From<Fingerprint> for Element
impl From<Fingerprint> for Element
source§fn from(elem: Fingerprint) -> Element
fn from(elem: Fingerprint) -> Element
source§impl From<IdentityKey> for Element
impl From<IdentityKey> for Element
source§fn from(other: IdentityKey) -> Self
fn from(other: IdentityKey) -> Self
source§impl From<JidPrepQuery> for Element
impl From<JidPrepQuery> for Element
source§fn from(other: JidPrepQuery) -> Self
fn from(other: JidPrepQuery) -> Self
source§impl From<JidPrepResponse> for Element
impl From<JidPrepResponse> for Element
source§fn from(other: JidPrepResponse) -> Self
fn from(other: JidPrepResponse) -> Self
source§impl From<ListCertsQuery> for Element
impl From<ListCertsQuery> for Element
source§fn from(other: ListCertsQuery) -> Self
fn from(other: ListCertsQuery) -> Self
source§impl From<ListCertsResponse> for Element
impl From<ListCertsResponse> for Element
source§fn from(elem: ListCertsResponse) -> Element
fn from(elem: ListCertsResponse) -> Element
source§impl From<MediaElement> for Element
impl From<MediaElement> for Element
source§fn from(elem: MediaElement) -> Element
fn from(elem: MediaElement) -> Element
source§impl From<MetadataQuery> for Element
impl From<MetadataQuery> for Element
source§fn from(other: MetadataQuery) -> Self
fn from(other: MetadataQuery) -> Self
source§impl From<MetadataResponse> for Element
impl From<MetadataResponse> for Element
source§fn from(elem: MetadataResponse) -> Element
fn from(elem: MetadataResponse) -> Element
source§impl From<OccupantId> for Element
impl From<OccupantId> for Element
source§fn from(other: OccupantId) -> Self
fn from(other: OccupantId) -> Self
source§impl From<Participant> for Element
impl From<Participant> for Element
source§fn from(elem: Participant) -> Element
fn from(elem: Participant) -> Element
source§impl From<PayloadType> for Element
impl From<PayloadType> for Element
source§fn from(elem: PayloadType) -> Element
fn from(elem: PayloadType) -> Element
source§impl From<PreKeyPublic> for Element
impl From<PreKeyPublic> for Element
source§fn from(other: PreKeyPublic) -> Self
fn from(other: PreKeyPublic) -> Self
source§impl From<PubKeyData> for Element
impl From<PubKeyData> for Element
source§fn from(other: PubKeyData) -> Self
fn from(other: PubKeyData) -> Self
source§impl From<PubKeyMeta> for Element
impl From<PubKeyMeta> for Element
source§fn from(other: PubKeyMeta) -> Self
fn from(other: PubKeyMeta) -> Self
source§impl From<PubKeysMeta> for Element
impl From<PubKeysMeta> for Element
source§fn from(elem: PubKeysMeta) -> Element
fn from(elem: PubKeysMeta) -> Element
source§impl From<PubSubEvent> for Element
impl From<PubSubEvent> for Element
source§fn from(event: PubSubEvent) -> Element
fn from(event: PubSubEvent) -> Element
source§impl From<PubSubOwner> for Element
impl From<PubSubOwner> for Element
source§fn from(pubsub: PubSubOwner) -> Element
fn from(pubsub: PubSubOwner) -> Element
source§impl From<PublishOptions> for Element
impl From<PublishOptions> for Element
source§fn from(elem: PublishOptions) -> Element
fn from(elem: PublishOptions) -> Element
source§impl From<ReasonElement> for Element
impl From<ReasonElement> for Element
source§fn from(reason: ReasonElement) -> Element
fn from(reason: ReasonElement) -> Element
source§impl From<RequestToken> for Element
impl From<RequestToken> for Element
source§fn from(other: RequestToken) -> Self
fn from(other: RequestToken) -> Self
source§impl From<ServicesQuery> for Element
impl From<ServicesQuery> for Element
source§fn from(other: ServicesQuery) -> Self
fn from(other: ServicesQuery) -> Self
source§impl From<ServicesResult> for Element
impl From<ServicesResult> for Element
source§fn from(elem: ServicesResult) -> Element
fn from(elem: ServicesResult) -> Element
source§impl From<SignedPreKeyPublic> for Element
impl From<SignedPreKeyPublic> for Element
source§fn from(other: SignedPreKeyPublic) -> Self
fn from(other: SignedPreKeyPublic) -> Self
source§impl From<SignedPreKeySignature> for Element
impl From<SignedPreKeySignature> for Element
source§fn from(other: SignedPreKeySignature) -> Self
fn from(other: SignedPreKeySignature) -> Self
source§impl From<SlotRequest> for Element
impl From<SlotRequest> for Element
source§fn from(other: SlotRequest) -> Self
fn from(other: SlotRequest) -> Self
source§impl From<SlotResult> for Element
impl From<SlotResult> for Element
source§fn from(elem: SlotResult) -> Element
fn from(elem: SlotResult) -> Element
source§impl From<StanzaError> for Element
impl From<StanzaError> for Element
source§fn from(err: StanzaError) -> Element
fn from(err: StanzaError) -> Element
source§impl From<StreamManagement> for Element
impl From<StreamManagement> for Element
source§fn from(other: StreamManagement) -> Self
fn from(other: StreamManagement) -> Self
source§impl From<SubscribeOptions> for Element
impl From<SubscribeOptions> for Element
source§fn from(subscribe_options: SubscribeOptions) -> Element
fn from(subscribe_options: SubscribeOptions) -> Element
source§impl From<SubscriptionElem> for Element
impl From<SubscriptionElem> for Element
source§fn from(elem: SubscriptionElem) -> Element
fn from(elem: SubscriptionElem) -> Element
source§impl From<SubscriptionElem> for Element
impl From<SubscriptionElem> for Element
source§fn from(other: SubscriptionElem) -> Self
fn from(other: SubscriptionElem) -> Self
source§impl From<Subscriptions> for Element
impl From<Subscriptions> for Element
source§fn from(elem: Subscriptions) -> Element
fn from(elem: Subscriptions) -> Element
source§impl From<Subscriptions> for Element
impl From<Subscriptions> for Element
source§fn from(elem: Subscriptions) -> Element
fn from(elem: Subscriptions) -> Element
source§impl From<TimeResult> for Element
impl From<TimeResult> for Element
source§fn from(time: TimeResult) -> Element
fn from(time: TimeResult) -> Element
source§impl From<Unsubscribe> for Element
impl From<Unsubscribe> for Element
source§fn from(other: Unsubscribe) -> Self
fn from(other: Unsubscribe) -> Self
source§impl From<UpdateSubscription> for Element
impl From<UpdateSubscription> for Element
source§fn from(elem: UpdateSubscription) -> Element
fn from(elem: UpdateSubscription) -> Element
source§impl From<VCardUpdate> for Element
impl From<VCardUpdate> for Element
source§fn from(elem: VCardUpdate) -> Element
fn from(elem: VCardUpdate) -> Element
source§impl From<VersionQuery> for Element
impl From<VersionQuery> for Element
source§fn from(other: VersionQuery) -> Self
fn from(other: VersionQuery) -> Self
source§impl From<VersionResult> for Element
impl From<VersionResult> for Element
source§fn from(elem: VersionResult) -> Element
fn from(elem: VersionResult) -> Element
source§impl FromXml for Element
impl FromXml for Element
§type Builder = ElementFromEvents
type Builder = ElementFromEvents
source§impl IntoXml for Element
impl IntoXml for Element
§type EventIter = IntoEvents
type EventIter = IntoEvents
source§fn into_event_iter(self) -> Result<<Element as IntoXml>::EventIter, Error>
fn into_event_iter(self) -> Result<<Element as IntoXml>::EventIter, Error>
rxml::Event
items.source§impl PartialEq for Element
impl PartialEq for Element
source§impl TryFrom<Element> for Action
impl TryFrom<Element> for Action
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Actor
impl TryFrom<Element> for Actor
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Affiliation
impl TryFrom<Element> for Affiliation
source§impl TryFrom<Element> for Affiliation
impl TryFrom<Element> for Affiliation
source§impl TryFrom<Element> for Affiliations
impl TryFrom<Element> for Affiliations
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<Affiliations, FromElementError>
fn try_from(elem: Element) -> Result<Affiliations, FromElementError>
source§impl TryFrom<Element> for Affiliations
impl TryFrom<Element> for Affiliations
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<Affiliations, FromElementError>
fn try_from(elem: Element) -> Result<Affiliations, FromElementError>
source§impl TryFrom<Element> for Append
impl TryFrom<Element> for Append
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Artist
impl TryFrom<Element> for Artist
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for BindFeature
impl TryFrom<Element> for BindFeature
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for BindQuery
impl TryFrom<Element> for BindQuery
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for BindResponse
impl TryFrom<Element> for BindResponse
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<BindResponse, FromElementError>
fn try_from(elem: Element) -> Result<BindResponse, FromElementError>
source§impl TryFrom<Element> for Binval
impl TryFrom<Element> for Binval
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Block
impl TryFrom<Element> for Block
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for BlocklistRequest
impl TryFrom<Element> for BlocklistRequest
source§impl TryFrom<Element> for BlocklistResult
impl TryFrom<Element> for BlocklistResult
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<BlocklistResult, FromElementError>
fn try_from(elem: Element) -> Result<BlocklistResult, FromElementError>
source§impl TryFrom<Element> for Body
impl TryFrom<Element> for Body
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Bundle
impl TryFrom<Element> for Bundle
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Candidate
impl TryFrom<Element> for Candidate
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Caps
impl TryFrom<Element> for Caps
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for ChatState
impl TryFrom<Element> for ChatState
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Checksum
impl TryFrom<Element> for Checksum
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Conference
impl TryFrom<Element> for Conference
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<Conference, FromElementError>
fn try_from(elem: Element) -> Result<Conference, FromElementError>
source§impl TryFrom<Element> for Conference
impl TryFrom<Element> for Conference
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(root: Element) -> Result<Conference, FromElementError>
fn try_from(root: Element) -> Result<Conference, FromElementError>
source§impl TryFrom<Element> for Configure
impl TryFrom<Element> for Configure
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Configure
impl TryFrom<Element> for Configure
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Content
impl TryFrom<Element> for Content
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Credentials
impl TryFrom<Element> for Credentials
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<Credentials, FromElementError>
fn try_from(elem: Element) -> Result<Credentials, FromElementError>
source§impl TryFrom<Element> for Data
impl TryFrom<Element> for Data
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for DataForm
impl TryFrom<Element> for DataForm
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Default
impl TryFrom<Element> for Default
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Default
impl TryFrom<Element> for Default
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for DefinedCondition
impl TryFrom<Element> for DefinedCondition
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<DefinedCondition, FromElementError>
fn try_from(elem: Element) -> Result<DefinedCondition, FromElementError>
source§impl TryFrom<Element> for DefinedCondition
impl TryFrom<Element> for DefinedCondition
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<DefinedCondition, FromElementError>
fn try_from(elem: Element) -> Result<DefinedCondition, FromElementError>
source§impl TryFrom<Element> for Delete
impl TryFrom<Element> for Delete
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Description
impl TryFrom<Element> for Description
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<Description, FromElementError>
fn try_from(elem: Element) -> Result<Description, FromElementError>
source§impl TryFrom<Element> for Description
impl TryFrom<Element> for Description
source§impl TryFrom<Element> for Description
impl TryFrom<Element> for Description
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<Description, FromElementError>
fn try_from(elem: Element) -> Result<Description, FromElementError>
source§impl TryFrom<Element> for DeviceList
impl TryFrom<Element> for DeviceList
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<DeviceList, FromElementError>
fn try_from(elem: Element) -> Result<DeviceList, FromElementError>
source§impl TryFrom<Element> for Disable
impl TryFrom<Element> for Disable
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for DiscoInfoQuery
impl TryFrom<Element> for DiscoInfoQuery
source§impl TryFrom<Element> for DiscoInfoResult
impl TryFrom<Element> for DiscoInfoResult
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<DiscoInfoResult, FromElementError>
fn try_from(elem: Element) -> Result<DiscoInfoResult, FromElementError>
source§impl TryFrom<Element> for DiscoItemsQuery
impl TryFrom<Element> for DiscoItemsQuery
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<DiscoItemsQuery, FromElementError>
fn try_from(elem: Element) -> Result<DiscoItemsQuery, FromElementError>
source§impl TryFrom<Element> for DiscoItemsResult
impl TryFrom<Element> for DiscoItemsResult
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<DiscoItemsResult, FromElementError>
fn try_from(elem: Element) -> Result<DiscoItemsResult, FromElementError>
source§impl TryFrom<Element> for ECaps2
impl TryFrom<Element> for ECaps2
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Enable
impl TryFrom<Element> for Enable
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Enabled
impl TryFrom<Element> for Enabled
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Encrypted
impl TryFrom<Element> for Encrypted
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Erase
impl TryFrom<Element> for Erase
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for ExplicitMessageEncryption
impl TryFrom<Element> for ExplicitMessageEncryption
source§impl TryFrom<Element> for Failed
impl TryFrom<Element> for Failed
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Failure
impl TryFrom<Element> for Failure
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for FastQuery
impl TryFrom<Element> for FastQuery
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for FastResponse
impl TryFrom<Element> for FastResponse
source§impl TryFrom<Element> for Field
impl TryFrom<Element> for Field
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for File
impl TryFrom<Element> for File
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Fin
impl TryFrom<Element> for Fin
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Fingerprint
impl TryFrom<Element> for Fingerprint
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<Fingerprint, FromElementError>
fn try_from(elem: Element) -> Result<Fingerprint, FromElementError>
source§impl TryFrom<Element> for Forwarded
impl TryFrom<Element> for Forwarded
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Group
impl TryFrom<Element> for Group
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Group
impl TryFrom<Element> for Group
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Group
impl TryFrom<Element> for Group
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Handshake
impl TryFrom<Element> for Handshake
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Header
impl TryFrom<Element> for Header
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Header
impl TryFrom<Element> for Header
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Identity
impl TryFrom<Element> for Identity
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for IdentityKey
impl TryFrom<Element> for IdentityKey
source§impl TryFrom<Element> for Iq
impl TryFrom<Element> for Iq
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Item
impl TryFrom<Element> for Item
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Item
impl TryFrom<Element> for Item
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Item
impl TryFrom<Element> for Item
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Item
impl TryFrom<Element> for Item
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Item
impl TryFrom<Element> for Item
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Items
impl TryFrom<Element> for Items
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for JidPrepQuery
impl TryFrom<Element> for JidPrepQuery
source§impl TryFrom<Element> for JidPrepResponse
impl TryFrom<Element> for JidPrepResponse
source§impl TryFrom<Element> for Jingle
impl TryFrom<Element> for Jingle
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for JingleMI
impl TryFrom<Element> for JingleMI
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Join
impl TryFrom<Element> for Join
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Length
impl TryFrom<Element> for Length
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for ListCertsQuery
impl TryFrom<Element> for ListCertsQuery
source§impl TryFrom<Element> for ListCertsResponse
impl TryFrom<Element> for ListCertsResponse
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<ListCertsResponse, FromElementError>
fn try_from(elem: Element) -> Result<ListCertsResponse, FromElementError>
source§impl TryFrom<Element> for Mechanism
impl TryFrom<Element> for Mechanism
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for MediaElement
impl TryFrom<Element> for MediaElement
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<MediaElement, FromElementError>
fn try_from(elem: Element) -> Result<MediaElement, FromElementError>
source§impl TryFrom<Element> for Message
impl TryFrom<Element> for Message
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Metadata
impl TryFrom<Element> for Metadata
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for MetadataQuery
impl TryFrom<Element> for MetadataQuery
source§impl TryFrom<Element> for MetadataResponse
impl TryFrom<Element> for MetadataResponse
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<MetadataResponse, FromElementError>
fn try_from(elem: Element) -> Result<MetadataResponse, FromElementError>
source§impl TryFrom<Element> for Mix
impl TryFrom<Element> for Mix
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for MoodEnum
impl TryFrom<Element> for MoodEnum
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Muc
impl TryFrom<Element> for Muc
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for MucUser
impl TryFrom<Element> for MucUser
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Name
impl TryFrom<Element> for Name
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Nick
impl TryFrom<Element> for Nick
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for OccupantId
impl TryFrom<Element> for OccupantId
source§impl TryFrom<Element> for Oob
impl TryFrom<Element> for Oob
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Open
impl TryFrom<Element> for Open
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Option_
impl TryFrom<Element> for Option_
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Options
impl TryFrom<Element> for Options
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Participant
impl TryFrom<Element> for Participant
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<Participant, FromElementError>
fn try_from(elem: Element) -> Result<Participant, FromElementError>
source§impl TryFrom<Element> for PayloadType
impl TryFrom<Element> for PayloadType
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<PayloadType, FromElementError>
fn try_from(elem: Element) -> Result<PayloadType, FromElementError>
source§impl TryFrom<Element> for Photo
impl TryFrom<Element> for Photo
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Photo
impl TryFrom<Element> for Photo
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for PreKeyPublic
impl TryFrom<Element> for PreKeyPublic
source§impl TryFrom<Element> for Prefs
impl TryFrom<Element> for Prefs
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Prekeys
impl TryFrom<Element> for Prekeys
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Presence
impl TryFrom<Element> for Presence
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for PubKey
impl TryFrom<Element> for PubKey
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for PubKeyData
impl TryFrom<Element> for PubKeyData
source§impl TryFrom<Element> for PubKeyMeta
impl TryFrom<Element> for PubKeyMeta
source§impl TryFrom<Element> for PubKeysMeta
impl TryFrom<Element> for PubKeysMeta
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<PubKeysMeta, FromElementError>
fn try_from(elem: Element) -> Result<PubKeysMeta, FromElementError>
source§impl TryFrom<Element> for PubSub
impl TryFrom<Element> for PubSub
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for PubSubEvent
impl TryFrom<Element> for PubSubEvent
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<PubSubEvent, FromElementError>
fn try_from(elem: Element) -> Result<PubSubEvent, FromElementError>
source§impl TryFrom<Element> for PubSubOwner
impl TryFrom<Element> for PubSubOwner
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<PubSubOwner, FromElementError>
fn try_from(elem: Element) -> Result<PubSubOwner, FromElementError>
source§impl TryFrom<Element> for Publish
impl TryFrom<Element> for Publish
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for PublishOptions
impl TryFrom<Element> for PublishOptions
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<PublishOptions, FromElementError>
fn try_from(elem: Element) -> Result<PublishOptions, FromElementError>
source§impl TryFrom<Element> for Put
impl TryFrom<Element> for Put
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Query
impl TryFrom<Element> for Query
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Query
impl TryFrom<Element> for Query
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Query
impl TryFrom<Element> for Query
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Range
impl TryFrom<Element> for Range
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Rating
impl TryFrom<Element> for Rating
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Reactions
impl TryFrom<Element> for Reactions
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Reason
impl TryFrom<Element> for Reason
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for ReasonElement
impl TryFrom<Element> for ReasonElement
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<ReasonElement, FromElementError>
fn try_from(elem: Element) -> Result<ReasonElement, FromElementError>
source§impl TryFrom<Element> for Received
impl TryFrom<Element> for Received
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for RequestToken
impl TryFrom<Element> for RequestToken
source§impl TryFrom<Element> for Resource
impl TryFrom<Element> for Resource
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Result_
impl TryFrom<Element> for Result_
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Retract
impl TryFrom<Element> for Retract
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Revoke
impl TryFrom<Element> for Revoke
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Roster
impl TryFrom<Element> for Roster
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for RtpHdrext
impl TryFrom<Element> for RtpHdrext
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Rtt
impl TryFrom<Element> for Rtt
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Sent
impl TryFrom<Element> for Sent
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Service
impl TryFrom<Element> for Service
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for ServicesQuery
impl TryFrom<Element> for ServicesQuery
source§impl TryFrom<Element> for ServicesResult
impl TryFrom<Element> for ServicesResult
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<ServicesResult, FromElementError>
fn try_from(elem: Element) -> Result<ServicesResult, FromElementError>
source§impl TryFrom<Element> for SetNick
impl TryFrom<Element> for SetNick
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for SetQuery
impl TryFrom<Element> for SetQuery
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for SetResult
impl TryFrom<Element> for SetResult
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for SignedPreKeyPublic
impl TryFrom<Element> for SignedPreKeyPublic
source§impl TryFrom<Element> for SignedPreKeySignature
impl TryFrom<Element> for SignedPreKeySignature
source§impl TryFrom<Element> for SlotRequest
impl TryFrom<Element> for SlotRequest
source§impl TryFrom<Element> for SlotResult
impl TryFrom<Element> for SlotResult
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<SlotResult, FromElementError>
fn try_from(elem: Element) -> Result<SlotResult, FromElementError>
source§impl TryFrom<Element> for Source
impl TryFrom<Element> for Source
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Source
impl TryFrom<Element> for Source
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for StanzaError
impl TryFrom<Element> for StanzaError
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<StanzaError, FromElementError>
fn try_from(elem: Element) -> Result<StanzaError, FromElementError>
source§impl TryFrom<Element> for Status
impl TryFrom<Element> for Status
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Storage
impl TryFrom<Element> for Storage
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for StreamManagement
impl TryFrom<Element> for StreamManagement
source§impl TryFrom<Element> for Subject
impl TryFrom<Element> for Subject
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for SubscribeOptions
impl TryFrom<Element> for SubscribeOptions
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for SubscriptionElem
impl TryFrom<Element> for SubscriptionElem
source§impl TryFrom<Element> for SubscriptionElem
impl TryFrom<Element> for SubscriptionElem
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<SubscriptionElem, FromElementError>
fn try_from(elem: Element) -> Result<SubscriptionElem, FromElementError>
source§impl TryFrom<Element> for Subscriptions
impl TryFrom<Element> for Subscriptions
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<Subscriptions, FromElementError>
fn try_from(elem: Element) -> Result<Subscriptions, FromElementError>
source§impl TryFrom<Element> for Subscriptions
impl TryFrom<Element> for Subscriptions
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<Subscriptions, FromElementError>
fn try_from(elem: Element) -> Result<Subscriptions, FromElementError>
source§impl TryFrom<Element> for Text
impl TryFrom<Element> for Text
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Thread
impl TryFrom<Element> for Thread
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for TimeResult
impl TryFrom<Element> for TimeResult
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<TimeResult, FromElementError>
fn try_from(elem: Element) -> Result<TimeResult, FromElementError>
source§impl TryFrom<Element> for Title
impl TryFrom<Element> for Title
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Track
impl TryFrom<Element> for Track
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Transport
impl TryFrom<Element> for Transport
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Transport
impl TryFrom<Element> for Transport
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Transport
impl TryFrom<Element> for Transport
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Transport
impl TryFrom<Element> for Transport
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Tune
impl TryFrom<Element> for Tune
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for URI
impl TryFrom<Element> for URI
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Unblock
impl TryFrom<Element> for Unblock
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Unsubscribe
impl TryFrom<Element> for Unsubscribe
source§impl TryFrom<Element> for UpdateSubscription
impl TryFrom<Element> for UpdateSubscription
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<UpdateSubscription, FromElementError>
fn try_from(elem: Element) -> Result<UpdateSubscription, FromElementError>
source§impl TryFrom<Element> for Uri
impl TryFrom<Element> for Uri
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for Users
impl TryFrom<Element> for Users
§type Error = FromElementError
type Error = FromElementError
source§impl TryFrom<Element> for VCardUpdate
impl TryFrom<Element> for VCardUpdate
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<VCardUpdate, FromElementError>
fn try_from(elem: Element) -> Result<VCardUpdate, FromElementError>
source§impl TryFrom<Element> for VersionQuery
impl TryFrom<Element> for VersionQuery
source§impl TryFrom<Element> for VersionResult
impl TryFrom<Element> for VersionResult
§type Error = FromElementError
type Error = FromElementError
source§fn try_from(elem: Element) -> Result<VersionResult, FromElementError>
fn try_from(elem: Element) -> Result<VersionResult, FromElementError>
source§impl TryFrom<Element> for XhtmlIm
impl TryFrom<Element> for XhtmlIm
§type Error = FromElementError
type Error = FromElementError
impl Eq for Element
Auto Trait Implementations§
impl Freeze for Element
impl RefUnwindSafe for Element
impl Send for Element
impl Sync for Element
impl Unpin for Element
impl UnwindSafe for Element
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)