xmpp_parsers::data_formsEnum FieldType
Source pub enum FieldType {
Boolean,
Fixed,
Hidden,
JidMulti,
JidSingle,
ListMulti,
ListSingle,
TextMulti,
TextPrivate,
TextSingle,
}
Expand description
The type of a field element.
This field can only take the values “0” or “false” for a false
value, and “1” or “true” for a true value.
This field describes data, it must not be sent back to the
requester.
This field is hidden, it should not be displayed to the user but
should be sent back to the requester.
This field accepts one or more JIDs.
A client may want to let the user autocomplete them based on their
contacts list for instance.
This field accepts one JID. A client
may want to let the user autocomplete it based on their contacts
list for instance.
This field accepts one or more values from the list provided as
options.
This field accepts one value from the list provided as
options.
This field accepts one or more free form text lines.
This field accepts one free form password, a client should hide it
in its user interface.
This field accepts one free form text line.
Convert the value to an XML string in a context where an absent value
cannot be represented.
Convert the value to an XML string in a context where an absent value
can be represented.
Read more
Performs copy-assignment from
source
.
Read more
Formats the value using the given formatter.
Read more
Returns the “default value” for a type.
Read more
The associated error which can be returned from parsing.
Parses a string
s
to return a value of this type.
Read more
Convert the given XML text to a value.
Turns this into an attribute string, or None if it shouldn’t be added.
Tests for self
and other
values to be equal, and is used by ==
.
Tests for !=
. The default implementation is almost always sufficient,
and should not be overridden without very good reason.
Convert the value to an XML string in a context where an absent value
can be represented.
Immutably borrows from an owned value.
Read more
Mutably borrows from an owned value.
Read more
🔬This is a nightly-only experimental API. (clone_to_uninit
)
Performs copy-assignment from
self
to
dst
.
Read more
Returns the argument unchanged.
Calls U::from(self)
.
That is, this conversion is whatever the implementation of
From<T> for U
chooses to do.
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning.
Read more
Uses borrowed data to replace owned data, usually by cloning.
Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.