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.
Trait Implementations§
source§impl AsXmlText for FieldType
impl AsXmlText for FieldType
source§impl FromXmlText for FieldType
impl FromXmlText for FieldType
source§impl IntoAttributeValue for FieldType
impl IntoAttributeValue for FieldType
source§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
source§impl PartialEq for FieldType
impl PartialEq for FieldType
impl StructuralPartialEq for FieldType
Auto Trait Implementations§
impl Freeze for FieldType
impl RefUnwindSafe for FieldType
impl Send for FieldType
impl Sync for FieldType
impl Unpin for FieldType
impl UnwindSafe for FieldType
Blanket Implementations§
source§impl<T> AsOptionalXmlText for Twhere
T: AsXmlText,
impl<T> AsOptionalXmlText for Twhere
T: AsXmlText,
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
)