Enum xmpp_parsers::data_forms::FieldType
source · pub enum FieldType {
Boolean,
Fixed,
Hidden,
JidMulti,
JidSingle,
ListMulti,
ListSingle,
TextMulti,
TextPrivate,
TextSingle,
}
Expand description
The type of a field element.
Variants§
Boolean
This field can only take the values “0” or “false” for a false value, and “1” or “true” for a true value.
Fixed
This field describes data, it must not be sent back to the requester.
Hidden
This field is hidden, it should not be displayed to the user but should be sent back to the requester.
JidMulti
This field accepts one or more JIDs. A client may want to let the user autocomplete them based on their contacts list for instance.
JidSingle
This field accepts one JID. A client may want to let the user autocomplete it based on their contacts list for instance.
ListMulti
This field accepts one or more values from the list provided as options.
ListSingle
This field accepts one value from the list provided as options.
TextMulti
This field accepts one or more free form text lines.
TextPrivate
This field accepts one free form password, a client should hide it in its user interface.
TextSingle
This field accepts one free form text line.