xmpp::agent

Struct Element

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

A struct representing a DOM Element.

Fields§

§prefixes: Prefixes

Namespace declarations

Implementations§

Source§

impl Element

Source

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

Return a builder for an Element with the given name.

§Examples
use minidom::Element;

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

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

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

Returns a bare minimum Element with this name.

§Examples
use minidom::Element;

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

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

pub fn name(&self) -> &str

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

Source

pub fn ns(&self) -> String

Returns a reference to the namespace of this element.

Source

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

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

Source

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

Returns an iterator over the attributes of this element.

§Example
use minidom::Element;

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

let mut iter = elm.attrs();

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

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

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

Source

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

Modifies the value of an attribute.

Source

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

Returns whether the element has the given name and namespace.

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

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

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

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

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

Returns whether the element has the given namespace.

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

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

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

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

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

Parse a document from a BufRead.

Source

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

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

Source

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

Output a document to a Writer.

Source

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

Output a document to a Writer.

Source

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

Output the document to an ItemWriter

Source

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

Output the document to an ItemWriter

Source

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

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

Source

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

Extracts all children into a collection.

Source

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

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

§Examples
use minidom::Element;

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

let mut iter = elem.nodes();

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

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

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

Source

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

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

§Examples
use minidom::Element;

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

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

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

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

Source

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

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

§Examples
use minidom::Element;

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

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

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

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

Source

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

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

§Examples
use minidom::Element;

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

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

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

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

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

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

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

Appends a text node to an Element.

§Examples
use minidom::Element;

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

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

elem.append_text_node("text");

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

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

Appends a string as plain text to an Element.

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

§Examples
use minidom::Element;

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

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

elem.append_text_node("text");

elem.append_text(" and more text");

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

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

Appends a node to an Element.

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

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

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

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

pub fn text(&self) -> String

Returns the concatenation of all text nodes in the Element.

§Examples
use minidom::Element;

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

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

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

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

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

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

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

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

Source

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

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

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

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

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

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

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

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

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

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

Trait Implementations§

Source§

impl AsXml for Element

Source§

type ItemIter<'a> = ElementAsXml<'a>

The iterator type. Read more
Source§

fn as_xml_iter(&self) -> Result<<Element as AsXml>::ItemIter<'_>, Error>

Return an iterator which emits the contents of the struct or enum as serialisable Item items.
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) -> Element

Converts to this type from the input type.
Source§

impl From<Abort> for Element

Source§

fn from(other: Abort) -> Element

Converts to this type from the input type.
Source§

impl From<Abort> for Element

Source§

fn from(other: Abort) -> Element

Converts to this type from the input type.
Source§

impl From<Action> for Element

Source§

fn from(other: Action) -> Element

Converts to this type from the input type.
Source§

impl From<Active> for Element

Source§

fn from(other: Active) -> Element

Converts to this type from the input type.
Source§

impl From<Actor> for Element

Source§

fn from(other: Actor) -> Element

Converts to this type from the input type.
Source§

impl From<Affiliation> for Element

Source§

fn from(other: Affiliation) -> Element

Converts to this type from the input type.
Source§

impl From<Affiliation> for Element

Source§

fn from(other: Affiliation) -> Element

Converts to this type from the input type.
Source§

impl From<Affiliations> for Element

Source§

fn from(other: Affiliations) -> Element

Converts to this type from the input type.
Source§

impl From<Affiliations> for Element

Source§

fn from(other: Affiliations) -> Element

Converts to this type from the input type.
Source§

impl From<Append> for Element

Source§

fn from(other: Append) -> Element

Converts to this type from the input type.
Source§

impl From<Artist> for Element

Source§

fn from(other: Artist) -> Element

Converts to this type from the input type.
Source§

impl From<Attention> for Element

Source§

fn from(other: Attention) -> Element

Converts to this type from the input type.
Source§

impl From<Auth> for Element

Source§

fn from(other: Auth) -> Element

Converts to this type from the input type.
Source§

impl From<Authenticate> for Element

Source§

fn from(other: Authenticate) -> Element

Converts to this type from the input type.
Source§

impl From<Authentication> for Element

Source§

fn from(other: Authentication) -> Element

Converts to this type from the input type.
Source§

impl From<BindFeature> for Element

Source§

fn from(other: BindFeature) -> Element

Converts to this type from the input type.
Source§

impl From<BindFeature> for Element

Source§

fn from(other: BindFeature) -> Element

Converts to this type from the input type.
Source§

impl From<BindQuery> for Element

Source§

fn from(other: BindQuery) -> Element

Converts to this type from the input type.
Source§

impl From<BindQuery> for Element

Source§

fn from(other: BindQuery) -> Element

Converts to this type from the input type.
Source§

impl From<BindResponse> for Element

Source§

fn from(other: BindResponse) -> Element

Converts to this type from the input type.
Source§

impl From<Binval> for Element

Source§

fn from(other: Binval) -> Element

Converts to this type from the input type.
Source§

impl From<Block> for Element

Source§

fn from(other: Block) -> Element

Converts to this type from the input type.
Source§

impl From<Blocked> for Element

Source§

fn from(other: Blocked) -> Element

Converts to this type from the input type.
Source§

impl From<BlocklistRequest> for Element

Source§

fn from(other: BlocklistRequest) -> Element

Converts to this type from the input type.
Source§

impl From<BlocklistResult> for Element

Source§

fn from(other: BlocklistResult) -> Element

Converts to this type from the input type.
Source§

impl From<Body> for Element

Source§

fn from(other: Body) -> Element

Converts to this type from the input type.
Source§

impl From<Body> for Element

Source§

fn from(body: Body) -> Element

Converts to this type from the input type.
Source§

impl From<Bound> for Element

Source§

fn from(other: Bound) -> Element

Converts to this type from the input type.
Source§

impl From<Bundle> for Element

Source§

fn from(other: Bundle) -> Element

Converts to this type from the input type.
Source§

impl From<Candidate> for Element

Source§

fn from(other: Candidate) -> Element

Converts to this type from the input type.
Source§

impl From<Candidate> for Element

Source§

fn from(other: Candidate) -> Element

Converts to this type from the input type.
Source§

impl From<Candidate> for Element

Source§

fn from(other: Candidate) -> Element

Converts to this type from the input type.
Source§

impl From<Caps> for Element

Source§

fn from(caps: Caps) -> Element

Converts to this type from the input type.
Source§

impl From<Cert> for Element

Source§

fn from(other: Cert) -> Element

Converts to this type from the input type.
Source§

impl From<Challenge> for Element

Source§

fn from(other: Challenge) -> Element

Converts to this type from the input type.
Source§

impl From<Challenge> for Element

Source§

fn from(other: Challenge) -> Element

Converts to this type from the input type.
Source§

impl From<ChatState> for Element

Source§

fn from(other: ChatState) -> Element

Converts to this type from the input type.
Source§

impl From<Checksum> for Element

Source§

fn from(other: Checksum) -> Element

Converts to this type from the input type.
Source§

impl From<Close> for Element

Source§

fn from(other: Close) -> Element

Converts to this type from the input type.
Source§

impl From<Conference> for Element

Source§

fn from(other: Conference) -> Element

Converts to this type from the input type.
Source§

impl From<Conference> for Element

Source§

fn from(other: Conference) -> Element

Converts to this type from the input type.
Source§

impl From<Configure> for Element

Source§

fn from(other: Configure) -> Element

Converts to this type from the input type.
Source§

impl From<Configure> for Element

Source§

fn from(other: Configure) -> Element

Converts to this type from the input type.
Source§

impl From<Content> for Element

Source§

fn from(other: Content) -> Element

Converts to this type from the input type.
Source§

impl From<Content> for Element

Source§

fn from(other: Content) -> Element

Converts to this type from the input type.
Source§

impl From<Continue> for Element

Source§

fn from(other: Continue) -> Element

Converts to this type from the input type.
Source§

impl From<Continue> for Element

Source§

fn from(other: Continue) -> Element

Converts to this type from the input type.
Source§

impl From<Create> for Element

Source§

fn from(other: Create) -> Element

Converts to this type from the input type.
Source§

impl From<Create> for Element

Source§

fn from(other: Create) -> Element

Converts to this type from the input type.
Source§

impl From<Credentials> for Element

Source§

fn from(other: Credentials) -> Element

Converts to this type from the input type.
Source§

impl From<Data> for Element

Source§

fn from(other: Data) -> Element

Converts to this type from the input type.
Source§

impl From<Data> for Element

Source§

fn from(other: Data) -> Element

Converts to this type from the input type.
Source§

impl From<Data> for Element

Source§

fn from(other: Data) -> Element

Converts to this type from the input type.
Source§

impl From<DataForm> for Element

Source§

fn from(form: DataForm) -> Element

Converts to this type from the input type.
Source§

impl From<Default> for Element

Source§

fn from(other: Default) -> Element

Converts to this type from the input type.
Source§

impl From<Default> for Element

Source§

fn from(other: Default) -> Element

Converts to this type from the input type.
Source§

impl From<DefinedCondition> for Element

Source§

fn from(other: DefinedCondition) -> Element

Converts to this type from the input type.
Source§

impl From<DefinedCondition> for Element

Source§

fn from(other: DefinedCondition) -> Element

Converts to this type from the input type.
Source§

impl From<DefinedCondition> for Element

Source§

fn from(other: DefinedCondition) -> Element

Converts to this type from the input type.
Source§

impl From<Delay> for Element

Source§

fn from(other: Delay) -> Element

Converts to this type from the input type.
Source§

impl From<Delete> for Element

Source§

fn from(other: Delete) -> Element

Converts to this type from the input type.
Source§

impl From<Description> for Element

Source§

fn from(other: Description) -> Element

Converts to this type from the input type.
Source§

impl From<Description> for Element

Source§

fn from(other: Description) -> Element

Converts to this type from the input type.
Source§

impl From<Description> for Element

Source§

fn from(other: Description) -> Element

Converts to this type from the input type.
Source§

impl From<Destroy> for Element

Source§

fn from(other: Destroy) -> Element

Converts to this type from the input type.
Source§

impl From<Device> for Element

Source§

fn from(other: Device) -> Element

Converts to this type from the input type.
Source§

impl From<DeviceList> for Element

Source§

fn from(other: DeviceList) -> Element

Converts to this type from the input type.
Source§

impl From<Disable> for Element

Source§

fn from(other: Disable) -> Element

Converts to this type from the input type.
Source§

impl From<Disable> for Element

Source§

fn from(other: Disable) -> Element

Converts to this type from the input type.
Source§

impl From<DiscoInfoQuery> for Element

Source§

fn from(other: DiscoInfoQuery) -> Element

Converts to this type from the input type.
Source§

impl From<DiscoInfoResult> for Element

Source§

fn from(disco: DiscoInfoResult) -> Element

Converts to this type from the input type.
Source§

impl From<DiscoItemsQuery> for Element

Source§

fn from(other: DiscoItemsQuery) -> Element

Converts to this type from the input type.
Source§

impl From<DiscoItemsResult> for Element

Source§

fn from(other: DiscoItemsResult) -> Element

Converts to this type from the input type.
Source§

impl From<Displayed> for Element

Source§

fn from(other: Displayed) -> Element

Converts to this type from the input type.
Source§

impl From<ECaps2> for Element

Source§

fn from(other: ECaps2) -> Element

Converts to this type from the input type.
Source§

impl From<Enable> for Element

Source§

fn from(other: Enable) -> Element

Converts to this type from the input type.
Source§

impl From<Enable> for Element

Source§

fn from(other: Enable) -> Element

Converts to this type from the input type.
Source§

impl From<Enabled> for Element

Source§

fn from(other: Enabled) -> Element

Converts to this type from the input type.
Source§

impl From<Encrypted> for Element

Source§

fn from(other: Encrypted) -> Element

Converts to this type from the input type.
Source§

impl From<End> for Element

Source§

fn from(other: End) -> Element

Converts to this type from the input type.
Source§

impl From<ExplicitMessageEncryption> for Element

Source§

fn from(other: ExplicitMessageEncryption) -> Element

Converts to this type from the input type.
Source§

impl From<Extensions> for Element

Source§

fn from(other: Extensions) -> Element

Converts to this type from the input type.
Source§

impl From<Failed> for Element

Source§

fn from(other: Failed) -> Element

Converts to this type from the input type.
Source§

impl From<Failure> for Element

Source§

fn from(other: Failure) -> Element

Converts to this type from the input type.
Source§

impl From<Failure> for Element

Source§

fn from(other: Failure) -> Element

Converts to this type from the input type.
Source§

impl From<FastQuery> for Element

Source§

fn from(other: FastQuery) -> Element

Converts to this type from the input type.
Source§

impl From<FastResponse> for Element

Source§

fn from(other: FastResponse) -> Element

Converts to this type from the input type.
Source§

impl From<Feature> for Element

Source§

fn from(other: Feature) -> Element

Converts to this type from the input type.
Source§

impl From<Feature> for Element

Source§

fn from(other: Feature) -> Element

Converts to this type from the input type.
Source§

impl From<Field> for Element

Source§

fn from(field: Field) -> Element

Converts to this type from the input type.
Source§

impl From<File> for Element

Source§

fn from(other: File) -> Element

Converts to this type from the input type.
Source§

impl From<Fin> for Element

Source§

fn from(other: Fin) -> Element

Converts to this type from the input type.
Source§

impl From<Fingerprint> for Element

Source§

fn from(other: Fingerprint) -> Element

Converts to this type from the input type.
Source§

impl From<Forwarded> for Element

Source§

fn from(other: Forwarded) -> Element

Converts to this type from the input type.
Source§

impl From<Get> for Element

Source§

fn from(other: Get) -> Element

Converts to this type from the input type.
Source§

impl From<Group> for Element

Source§

fn from(other: Group) -> Element

Converts to this type from the input type.
Source§

impl From<Group> for Element

Source§

fn from(other: Group) -> Element

Converts to this type from the input type.
Source§

impl From<Group> for Element

Source§

fn from(other: Group) -> Element

Converts to this type from the input type.
Source§

impl From<HandledCountTooHigh> for Element

Source§

fn from(other: HandledCountTooHigh) -> Element

Converts to this type from the input type.
Source§

impl From<Handshake> for Element

Source§

fn from(other: Handshake) -> Element

Converts to this type from the input type.
Source§

impl From<Hash> for Element

Source§

fn from(other: Hash) -> Element

Converts to this type from the input type.
Source§

impl From<Header> for Element

Source§

fn from(elem: Header) -> Element

Converts to this type from the input type.
Source§

impl From<Header> for Element

Source§

fn from(other: Header) -> Element

Converts to this type from the input type.
Source§

impl From<History> for Element

Source§

fn from(other: History) -> Element

Converts to this type from the input type.
Source§

impl From<IV> for Element

Source§

fn from(other: IV) -> Element

Converts to this type from the input type.
Source§

impl From<Identity> for Element

Source§

fn from(other: Identity) -> Element

Converts to this type from the input type.
Source§

impl From<IdentityKey> for Element

Source§

fn from(other: IdentityKey) -> Element

Converts to this type from the input type.
Source§

impl From<Idle> for Element

Source§

fn from(other: Idle) -> Element

Converts to this type from the input type.
Source§

impl From<IdleSeconds> for Element

Source§

fn from(other: IdleSeconds) -> Element

Converts to this type from the input type.
Source§

impl From<Inactive> for Element

Source§

fn from(other: Inactive) -> Element

Converts to this type from the input type.
Source§

impl From<Info> for Element

Source§

fn from(other: Info) -> Element

Converts to this type from the input type.
Source§

impl From<InlineFeatures> for Element

Source§

fn from(other: InlineFeatures) -> Element

Converts to this type from the input type.
Source§

impl From<Iq> for Element

Source§

fn from(iq: Iq) -> Element

Converts to this type from the input type.
Source§

impl From<Item> for Element

Source§

fn from(other: Item) -> Element

Converts to this type from the input type.
Source§

impl From<Item> for Element

Source§

fn from(other: Item) -> Element

Converts to this type from the input type.
Source§

impl From<Item> for Element

Source§

fn from(other: Item) -> Element

Converts to this type from the input type.
Source§

impl From<Item> for Element

Source§

fn from(item: Item) -> Element

Converts to this type from the input type.
Source§

impl From<Item> for Element

Source§

fn from(item: Item) -> Element

Converts to this type from the input type.
Source§

impl From<Item> for Element

Source§

fn from(other: Item) -> Element

Converts to this type from the input type.
Source§

impl From<Items> for Element

Source§

fn from(other: Items) -> Element

Converts to this type from the input type.
Source§

impl From<JidPrepQuery> for Element

Source§

fn from(other: JidPrepQuery) -> Element

Converts to this type from the input type.
Source§

impl From<JidPrepResponse> for Element

Source§

fn from(other: JidPrepResponse) -> Element

Converts to this type from the input type.
Source§

impl From<Jingle> for Element

Source§

fn from(other: Jingle) -> Element

Converts to this type from the input type.
Source§

impl From<JingleMI> for Element

Source§

fn from(jingle_mi: JingleMI) -> Element

Converts to this type from the input type.
Source§

impl From<Join> for Element

Source§

fn from(other: Join) -> Element

Converts to this type from the input type.
Source§

impl From<Key> for Element

Source§

fn from(other: Key) -> Element

Converts to this type from the input type.
Source§

impl From<Leave> for Element

Source§

fn from(other: Leave) -> Element

Converts to this type from the input type.
Source§

impl From<Length> for Element

Source§

fn from(other: Length) -> Element

Converts to this type from the input type.
Source§

impl From<Limits> for Element

Source§

fn from(other: Limits) -> Element

Converts to this type from the input type.
Source§

impl From<ListCertsQuery> for Element

Source§

fn from(other: ListCertsQuery) -> Element

Converts to this type from the input type.
Source§

impl From<ListCertsResponse> for Element

Source§

fn from(other: ListCertsResponse) -> Element

Converts to this type from the input type.
Source§

impl From<ListRange> for Element

Source§

fn from(other: ListRange) -> Element

Converts to this type from the input type.
Source§

impl From<MaxBytes> for Element

Source§

fn from(other: MaxBytes) -> Element

Converts to this type from the input type.
Source§

impl From<Mechanism> for Element

Source§

fn from(other: Mechanism) -> Element

Converts to this type from the input type.
Source§

impl From<MediaElement> for Element

Source§

fn from(other: MediaElement) -> Element

Converts to this type from the input type.
Source§

impl From<Message> for Element

Source§

fn from(message: Message) -> Element

Converts to this type from the input type.
Source§

impl From<Metadata> for Element

Source§

fn from(other: Metadata) -> Element

Converts to this type from the input type.
Source§

impl From<MetadataQuery> for Element

Source§

fn from(other: MetadataQuery) -> Element

Converts to this type from the input type.
Source§

impl From<MetadataResponse> for Element

Source§

fn from(other: MetadataResponse) -> Element

Converts to this type from the input type.
Source§

impl From<Method> for Element

Source§

fn from(other: Method) -> Element

Converts to this type from the input type.
Source§

impl From<Mix> for Element

Source§

fn from(other: Mix) -> Element

Converts to this type from the input type.
Source§

impl From<MoodEnum> for Element

Source§

fn from(other: MoodEnum) -> Element

Converts to this type from the input type.
Source§

impl From<Muc> for Element

Source§

fn from(other: Muc) -> Element

Converts to this type from the input type.
Source§

impl From<MucUser> for Element

Source§

fn from(other: MucUser) -> Element

Converts to this type from the input type.
Source§

impl From<Name> for Element

Source§

fn from(other: Name) -> Element

Converts to this type from the input type.
Source§

impl From<Next> for Element

Source§

fn from(other: Next) -> Element

Converts to this type from the input type.
Source§

impl From<Nick> for Element

Source§

fn from(other: Nick) -> Element

Converts to this type from the input type.
Source§

impl From<NoCertManagement> for Element

Source§

fn from(other: NoCertManagement) -> Element

Converts to this type from the input type.
Source§

impl From<Nonza> for Element

Source§

fn from(other: Nonza) -> Element

Converts to this type from the input type.
Source§

impl From<Nonza> for Element

Source§

fn from(other: Nonza) -> Element

Converts to this type from the input type.
Source§

impl From<Nonza> for Element

Source§

fn from(other: Nonza) -> Element

Converts to this type from the input type.
Source§

impl From<OccupantId> for Element

Source§

fn from(other: OccupantId) -> Element

Converts to this type from the input type.
Source§

impl From<Oob> for Element

Source§

fn from(other: Oob) -> Element

Converts to this type from the input type.
Source§

impl From<Open> for Element

Source§

fn from(other: Open) -> Element

Converts to this type from the input type.
Source§

impl From<Open> for Element

Source§

fn from(other: Open) -> Element

Converts to this type from the input type.
Source§

impl From<Option_> for Element

Source§

fn from(other: Option_) -> Element

Converts to this type from the input type.
Source§

impl From<Optional> for Element

Source§

fn from(other: Optional) -> Element

Converts to this type from the input type.
Source§

impl From<Options> for Element

Source§

fn from(other: Options) -> Element

Converts to this type from the input type.
Source§

impl From<OriginId> for Element

Source§

fn from(other: OriginId) -> Element

Converts to this type from the input type.
Source§

impl From<Parameter> for Element

Source§

fn from(other: Parameter) -> Element

Converts to this type from the input type.
Source§

impl From<Parameter> for Element

Source§

fn from(other: Parameter) -> Element

Converts to this type from the input type.
Source§

impl From<ParseError> for Element

Source§

fn from(other: ParseError) -> Element

Converts to this type from the input type.
Source§

impl From<Participant> for Element

Source§

fn from(other: Participant) -> Element

Converts to this type from the input type.
Source§

impl From<Payload> for Element

Source§

fn from(other: Payload) -> Element

Converts to this type from the input type.
Source§

impl From<PayloadType> for Element

Source§

fn from(other: PayloadType) -> Element

Converts to this type from the input type.
Source§

impl From<Photo> for Element

Source§

fn from(other: Photo) -> Element

Converts to this type from the input type.
Source§

impl From<Photo> for Element

Source§

fn from(other: Photo) -> Element

Converts to this type from the input type.
Source§

impl From<Ping> for Element

Source§

fn from(other: Ping) -> Element

Converts to this type from the input type.
Source§

impl From<PreKeyPublic> for Element

Source§

fn from(other: PreKeyPublic) -> Element

Converts to this type from the input type.
Source§

impl From<Prefs> for Element

Source§

fn from(other: Prefs) -> Element

Converts to this type from the input type.
Source§

impl From<Prekeys> for Element

Source§

fn from(other: Prekeys) -> Element

Converts to this type from the input type.
Source§

impl From<Presence> for Element

Source§

fn from(presence: Presence) -> Element

Converts to this type from the input type.
Source§

impl From<Private> for Element

Source§

fn from(other: Private) -> Element

Converts to this type from the input type.
Source§

impl From<Proceed> for Element

Source§

fn from(other: Proceed) -> Element

Converts to this type from the input type.
Source§

impl From<PubKey> for Element

Source§

fn from(other: PubKey) -> Element

Converts to this type from the input type.
Source§

impl From<PubKeyData> for Element

Source§

fn from(other: PubKeyData) -> Element

Converts to this type from the input type.
Source§

impl From<PubKeyMeta> for Element

Source§

fn from(other: PubKeyMeta) -> Element

Converts to this type from the input type.
Source§

impl From<PubKeysMeta> for Element

Source§

fn from(other: PubKeysMeta) -> Element

Converts to this type from the input type.
Source§

impl From<PubSub> for Element

Source§

fn from(pubsub: PubSub) -> Element

Converts to this type from the input type.
Source§

impl From<PubSubEvent> for Element

Source§

fn from(event: PubSubEvent) -> Element

Converts to this type from the input type.
Source§

impl From<PubSubOwner> for Element

Source§

fn from(pubsub: PubSubOwner) -> Element

Converts to this type from the input type.
Source§

impl From<Publish> for Element

Source§

fn from(other: Publish) -> Element

Converts to this type from the input type.
Source§

impl From<PublishOptions> for Element

Source§

fn from(other: PublishOptions) -> Element

Converts to this type from the input type.
Source§

impl From<Purge> for Element

Source§

fn from(other: Purge) -> Element

Converts to this type from the input type.
Source§

impl From<Put> for Element

Source§

fn from(other: Put) -> Element

Converts to this type from the input type.
Source§

impl From<Query> for Element

Source§

fn from(other: Query) -> Element

Converts to this type from the input type.
Source§

impl From<Query> for Element

Source§

fn from(query: Query) -> Element

Converts to this type from the input type.
Source§

impl From<Query> for Element

Source§

fn from(elem: Query) -> Element

Converts to this type from the input type.
Source§

impl From<R> for Element

Source§

fn from(other: R) -> Element

Converts to this type from the input type.
Source§

impl From<Range> for Element

Source§

fn from(other: Range) -> Element

Converts to this type from the input type.
Source§

impl From<Rating> for Element

Source§

fn from(other: Rating) -> Element

Converts to this type from the input type.
Source§

impl From<Reaction> for Element

Source§

fn from(other: Reaction) -> Element

Converts to this type from the input type.
Source§

impl From<Reactions> for Element

Source§

fn from(other: Reactions) -> Element

Converts to this type from the input type.
Source§

impl From<Reason> for Element

Source§

fn from(other: Reason) -> Element

Converts to this type from the input type.
Source§

impl From<Reason> for Element

Source§

fn from(reason: Reason) -> Element

Converts to this type from the input type.
Source§

impl From<ReasonElement> for Element

Source§

fn from(reason: ReasonElement) -> Element

Converts to this type from the input type.
Source§

impl From<Received> for Element

Source§

fn from(other: Received) -> Element

Converts to this type from the input type.
Source§

impl From<Received> for Element

Source§

fn from(other: Received) -> Element

Converts to this type from the input type.
Source§

impl From<Received> for Element

Source§

fn from(other: Received) -> Element

Converts to this type from the input type.
Source§

impl From<ReceivedStreamError> for Element

Source§

fn from(other: ReceivedStreamError) -> Element

Converts to this type from the input type.
Source§

impl From<Redirect> for Element

Source§

fn from(other: Redirect) -> Element

Converts to this type from the input type.
Source§

impl From<Replace> for Element

Source§

fn from(other: Replace) -> Element

Converts to this type from the input type.
Source§

impl From<Request> for Element

Source§

fn from(other: Request) -> Element

Converts to this type from the input type.
Source§

impl From<Request> for Element

Source§

fn from(other: Request) -> Element

Converts to this type from the input type.
Source§

impl From<RequestToken> for Element

Source§

fn from(other: RequestToken) -> Element

Converts to this type from the input type.
Source§

impl From<Required> for Element

Source§

fn from(other: Required) -> Element

Converts to this type from the input type.
Source§

impl From<RequiredStartTls> for Element

Source§

fn from(other: RequiredStartTls) -> Element

Converts to this type from the input type.
Source§

impl From<Resource> for Element

Source§

fn from(other: Resource) -> Element

Converts to this type from the input type.
Source§

impl From<Response> for Element

Source§

fn from(other: Response) -> Element

Converts to this type from the input type.
Source§

impl From<Response> for Element

Source§

fn from(other: Response) -> Element

Converts to this type from the input type.
Source§

impl From<Result_> for Element

Source§

fn from(other: Result_) -> Element

Converts to this type from the input type.
Source§

impl From<Resume> for Element

Source§

fn from(other: Resume) -> Element

Converts to this type from the input type.
Source§

impl From<Resumed> for Element

Source§

fn from(other: Resumed) -> Element

Converts to this type from the input type.
Source§

impl From<Retract> for Element

Source§

fn from(other: Retract) -> Element

Converts to this type from the input type.
Source§

impl From<Revoke> for Element

Source§

fn from(other: Revoke) -> Element

Converts to this type from the input type.
Source§

impl From<Roster> for Element

Source§

fn from(other: Roster) -> Element

Converts to this type from the input type.
Source§

impl From<RtcpFb> for Element

Source§

fn from(other: RtcpFb) -> Element

Converts to this type from the input type.
Source§

impl From<RtcpMux> for Element

Source§

fn from(other: RtcpMux) -> Element

Converts to this type from the input type.
Source§

impl From<RtpHdrext> for Element

Source§

fn from(other: RtpHdrext) -> Element

Converts to this type from the input type.
Source§

impl From<Rtt> for Element

Source§

fn from(other: Rtt) -> Element

Converts to this type from the input type.
Source§

impl From<SaslChannelBinding> for Element

Source§

fn from(other: SaslChannelBinding) -> Element

Converts to this type from the input type.
Source§

impl From<SaslMechanisms> for Element

Source§

fn from(other: SaslMechanisms) -> Element

Converts to this type from the input type.
Source§

impl From<Security> for Element

Source§

fn from(other: Security) -> Element

Converts to this type from the input type.
Source§

impl From<Sent> for Element

Source§

fn from(other: Sent) -> Element

Converts to this type from the input type.
Source§

impl From<SentStreamError> for Element

Source§

fn from(other: SentStreamError) -> Element

Converts to this type from the input type.
Source§

impl From<Service> for Element

Source§

fn from(other: Service) -> Element

Converts to this type from the input type.
Source§

impl From<ServicesQuery> for Element

Source§

fn from(other: ServicesQuery) -> Element

Converts to this type from the input type.
Source§

impl From<ServicesResult> for Element

Source§

fn from(other: ServicesResult) -> Element

Converts to this type from the input type.
Source§

impl From<SetNick> for Element

Source§

fn from(other: SetNick) -> Element

Converts to this type from the input type.
Source§

impl From<SetQuery> for Element

Source§

fn from(set: SetQuery) -> Element

Converts to this type from the input type.
Source§

impl From<SetResult> for Element

Source§

fn from(set: SetResult) -> Element

Converts to this type from the input type.
Source§

impl From<Show> for Element

Source§

fn from(show: Show) -> Element

Converts to this type from the input type.
Source§

impl From<SignedPreKeyPublic> for Element

Source§

fn from(other: SignedPreKeyPublic) -> Element

Converts to this type from the input type.
Source§

impl From<SignedPreKeySignature> for Element

Source§

fn from(other: SignedPreKeySignature) -> Element

Converts to this type from the input type.
Source§

impl From<SlotRequest> for Element

Source§

fn from(other: SlotRequest) -> Element

Converts to this type from the input type.
Source§

impl From<SlotResult> for Element

Source§

fn from(other: SlotResult) -> Element

Converts to this type from the input type.
Source§

impl From<Source> for Element

Source§

fn from(other: Source) -> Element

Converts to this type from the input type.
Source§

impl From<Source> for Element

Source§

fn from(other: Source) -> Element

Converts to this type from the input type.
Source§

impl From<Stanza> for Element

Source§

fn from(other: Stanza) -> Element

Converts to this type from the input type.
Source§

impl From<StanzaError> for Element

Source§

fn from(err: StanzaError) -> Element

Converts to this type from the input type.
Source§

impl From<StanzaId> for Element

Source§

fn from(other: StanzaId) -> Element

Converts to this type from the input type.
Source§

impl From<Start> for Element

Source§

fn from(other: Start) -> Element

Converts to this type from the input type.
Source§

impl From<StartTls> for Element

Source§

fn from(other: StartTls) -> Element

Converts to this type from the input type.
Source§

impl From<Status> for Element

Source§

fn from(elem: Status) -> Element

Converts to this type from the input type.
Source§

impl From<Storage> for Element

Source§

fn from(other: Storage) -> Element

Converts to this type from the input type.
Source§

impl From<Stream> for Element

Source§

fn from(other: Stream) -> Element

Converts to this type from the input type.
Source§

impl From<StreamError> for Element

Source§

fn from(other: StreamError) -> Element

Converts to this type from the input type.
Source§

impl From<StreamFeatures> for Element

Source§

fn from(other: StreamFeatures) -> Element

Converts to this type from the input type.
Source§

impl From<StreamManagement> for Element

Source§

fn from(other: StreamManagement) -> Element

Converts to this type from the input type.
Source§

impl From<Subject> for Element

Source§

fn from(other: Subject) -> Element

Converts to this type from the input type.
Source§

impl From<Subscribe> for Element

Source§

fn from(other: Subscribe) -> Element

Converts to this type from the input type.
Source§

impl From<Subscribe> for Element

Source§

fn from(other: Subscribe) -> Element

Converts to this type from the input type.
Source§

impl From<SubscribeOptions> for Element

Source§

fn from(subscribe_options: SubscribeOptions) -> Element

Converts to this type from the input type.
Source§

impl From<SubscriptionElem> for Element

Source§

fn from(other: SubscriptionElem) -> Element

Converts to this type from the input type.
Source§

impl From<SubscriptionElem> for Element

Source§

fn from(other: SubscriptionElem) -> Element

Converts to this type from the input type.
Source§

impl From<Subscriptions> for Element

Source§

fn from(other: Subscriptions) -> Element

Converts to this type from the input type.
Source§

impl From<Subscriptions> for Element

Source§

fn from(other: Subscriptions) -> Element

Converts to this type from the input type.
Source§

impl From<Success> for Element

Source§

fn from(other: Success) -> Element

Converts to this type from the input type.
Source§

impl From<Success> for Element

Source§

fn from(other: Success) -> Element

Converts to this type from the input type.
Source§

impl From<Tag> for Element

Source§

fn from(tag: Tag) -> Element

Converts to this type from the input type.
Source§

impl From<TaskData> for Element

Source§

fn from(other: TaskData) -> Element

Converts to this type from the input type.
Source§

impl From<Text> for Element

Source§

fn from(other: Text) -> Element

Converts to this type from the input type.
Source§

impl From<Thread> for Element

Source§

fn from(other: Thread) -> Element

Converts to this type from the input type.
Source§

impl From<Thumbnail> for Element

Source§

fn from(other: Thumbnail) -> Element

Converts to this type from the input type.
Source§

impl From<TimeQuery> for Element

Source§

fn from(other: TimeQuery) -> Element

Converts to this type from the input type.
Source§

impl From<TimeResult> for Element

Source§

fn from(time: TimeResult) -> Element

Converts to this type from the input type.
Source§

impl From<Title> for Element

Source§

fn from(other: Title) -> Element

Converts to this type from the input type.
Source§

impl From<Token> for Element

Source§

fn from(other: Token) -> Element

Converts to this type from the input type.
Source§

impl From<Track> for Element

Source§

fn from(other: Track) -> Element

Converts to this type from the input type.
Source§

impl From<Transport> for Element

Source§

fn from(other: Transport) -> Element

Converts to this type from the input type.
Source§

impl From<Transport> for Element

Source§

fn from(other: Transport) -> Element

Converts to this type from the input type.
Source§

impl From<Transport> for Element

Source§

fn from(other: Transport) -> Element

Converts to this type from the input type.
Source§

impl From<Transport> for Element

Source§

fn from(transport: Transport) -> Element

Converts to this type from the input type.
Source§

impl From<Transport> for Element

Source§

fn from(other: Transport) -> Element

Converts to this type from the input type.
Source§

impl From<Tune> for Element

Source§

fn from(other: Tune) -> Element

Converts to this type from the input type.
Source§

impl From<Type> for Element

Source§

fn from(other: Type) -> Element

Converts to this type from the input type.
Source§

impl From<Unblock> for Element

Source§

fn from(other: Unblock) -> Element

Converts to this type from the input type.
Source§

impl From<Unsubscribe> for Element

Source§

fn from(other: Unsubscribe) -> Element

Converts to this type from the input type.
Source§

impl From<UpdateSubscription> for Element

Source§

fn from(other: UpdateSubscription) -> Element

Converts to this type from the input type.
Source§

impl From<Uri> for Element

Source§

fn from(other: Uri) -> Element

Converts to this type from the input type.
Source§

impl From<Uri> for Element

Source§

fn from(other: Uri) -> Element

Converts to this type from the input type.
Source§

impl From<Url> for Element

Source§

fn from(other: Url) -> Element

Converts to this type from the input type.
Source§

impl From<UserAgent> for Element

Source§

fn from(other: UserAgent) -> Element

Converts to this type from the input type.
Source§

impl From<Users> for Element

Source§

fn from(other: Users) -> Element

Converts to this type from the input type.
Source§

impl From<VCard> for Element

Source§

fn from(other: VCard) -> Element

Converts to this type from the input type.
Source§

impl From<VCardUpdate> for Element

Source§

fn from(other: VCardUpdate) -> Element

Converts to this type from the input type.
Source§

impl From<Validate> for Element

Source§

fn from(other: Validate) -> Element

Converts to this type from the input type.
Source§

impl From<VersionQuery> for Element

Source§

fn from(other: VersionQuery) -> Element

Converts to this type from the input type.
Source§

impl From<VersionResult> for Element

Source§

fn from(other: VersionResult) -> Element

Converts to this type from the input type.
Source§

impl From<XhtmlIm> for Element

Source§

fn from(wrapper: XhtmlIm) -> Element

Converts to this type from the input type.
Source§

impl From<XmppStreamElement> for Element

Source§

fn from(other: XmppStreamElement) -> Element

Converts to this type from the input type.
Source§

impl FromStr for Element

Source§

type Err = Error

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

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

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

impl FromXml for Element

Source§

type Builder = ElementFromEvents

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

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

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

impl PartialEq for Element

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl TryFrom<Element> for Hash

Source§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Hash, <Hash as TryFrom<Element>>::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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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

Source§

type Output = T

Should always be Self
Source§

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

Source§

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>,

Source§

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>,

Source§

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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T