Struct xmpp_parsers::data_forms::Field
source · pub struct Field {
pub var: Option<String>,
pub type_: FieldType,
pub label: Option<String>,
pub required: bool,
pub desc: Option<String>,
pub options: Vec<Option_>,
pub values: Vec<String>,
pub media: Vec<MediaElement>,
pub validate: Option<Validate>,
}
Expand description
Represents a field in a data form.
Fields§
§var: Option<String>
The unique identifier for this field, in the form.
type_: FieldType
The type of this field.
label: Option<String>
The label to be possibly displayed to the user for this field.
required: bool
The form will be rejected if this field isn’t present.
desc: Option<String>
The natural-language description of the field, intended for presentation in a user-agent
options: Vec<Option_>
A list of allowed values.
values: Vec<String>
The values provided for this field.
media: Vec<MediaElement>
A list of media related to this field.
validate: Option<Validate>
Validation rules for this field.
Implementations§
source§impl Field
impl Field
sourcepub fn new(var: &str, type_: FieldType) -> Field
pub fn new(var: &str, type_: FieldType) -> Field
Create a new Field, of the given var and type.
sourcepub fn with_value(self, value: &str) -> Field
pub fn with_value(self, value: &str) -> Field
Set only one value in this Field.
sourcepub fn text_single(var: &str, value: &str) -> Field
pub fn text_single(var: &str, value: &str) -> Field
Create a text-single Field with the given var and unique value.
sourcepub fn is_form_type(&self, ty: &DataFormType) -> bool
pub fn is_form_type(&self, ty: &DataFormType) -> bool
Return true if this field is a valid form type specifier as per XEP-0068.
This function requires knowledge of the form’s type attribute as the criteria differ slightly among form types.
Trait Implementations§
source§impl PartialEq for Field
impl PartialEq for Field
source§impl TryFrom<Element> for Field
impl TryFrom<Element> for Field
§type Error = FromElementError
type Error = FromElementError
impl StructuralPartialEq for Field
Auto Trait Implementations§
impl Freeze for Field
impl RefUnwindSafe for Field
impl Send for Field
impl Sync for Field
impl Unpin for Field
impl UnwindSafe for Field
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
)