Struct xmpp_parsers::data_forms::Field
source · pub struct Field {
pub var: String,
pub type_: FieldType,
pub label: Option<String>,
pub required: bool,
pub options: Vec<Option_>,
pub values: Vec<String>,
pub media: Vec<MediaElement>,
}
Expand description
Represents a field in a data form.
Fields§
§var: 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.
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.
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.
Trait Implementations§
source§impl PartialEq for Field
impl PartialEq for Field
impl StructuralPartialEq for Field
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more