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

source

pub fn new(var: &str, type_: FieldType) -> Field

Create a new Field, of the given var and type.

source

pub fn with_value(self, value: &str) -> Field

Set only one value in this Field.

source

pub fn text_single(var: &str, value: &str) -> Field

Create a text-single Field with the given var and unique value.

source

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 Clone for Field

source§

fn clone(&self) -> Field

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Field

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Field> for Element

source§

fn from(field: Field) -> Element

Converts to this type from the input type.
source§

impl PartialEq for Field

source§

fn eq(&self, other: &Field) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<Element> for Field

§

type Error = FromElementError

The type returned in the event of a conversion error.
source§

fn try_from(elem: Element) -> Result<Field, FromElementError>

Performs the conversion.
source§

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> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.