Enum xmpp_parsers::data_forms_validate::Method

source ·
pub enum Method {
    Basic,
    Open,
    Range {
        min: Option<String>,
        max: Option<String>,
    },
    Regex(String),
}
Expand description

Validation Method

Variants§

§

Basic

… to indicate that the value(s) should simply match the field type and datatype constraints, the <validate/> element shall contain a <basic/> child element. Using <basic/> validation, the form interpreter MUST follow the validation rules of the datatype (if understood) and the field type.

https://xmpp.org/extensions/xep-0122.html#usercases-validation.basic

§

Open

For “list-single” or “list-multi”, to indicate that the user may enter a custom value (matching the datatype constraints) or choose from the predefined values, the <validate/> element shall contain an <open/> child element. The <open/> validation method applies to “text-multi” differently; it hints that each value for a “text-multi” field shall be validated separately. This effectively turns “text-multi” fields into an open-ended “list-multi”, with no options and all values automatically selected.

https://xmpp.org/extensions/xep-0122.html#usercases-validation.open

§

Range

To indicate that the value should fall within a certain range, the <validate/> element shall contain a <range/> child element. The ‘min’ and ‘max’ attributes of the <range/> element specify the minimum and maximum values allowed, respectively.

The ‘max’ attribute specifies the maximum allowable value. This attribute is OPTIONAL. The value depends on the datatype in use.

The ‘min’ attribute specifies the minimum allowable value. This attribute is OPTIONAL. The value depends on the datatype in use.

The <range/> element SHOULD possess either a ‘min’ or ‘max’ attribute, and MAY possess both. If neither attribute is included, the processor MUST assume that there are no range constraints.

https://xmpp.org/extensions/xep-0122.html#usercases-validation.range

Fields

§min: Option<String>

The ‘min’ attribute specifies the minimum allowable value.

§max: Option<String>

The ‘max’ attribute specifies the maximum allowable value.

§

Regex(String)

To indicate that the value should be restricted to a regular expression, the <validate/> element shall contain a <regex/> child element. The XML character data of this element is the pattern to apply. The syntax of this content MUST be that defined for POSIX extended regular expressions, including support for Unicode. The <regex/> element MUST contain character data only.

https://xmpp.org/extensions/xep-0122.html#usercases-validatoin.regex

Trait Implementations§

source§

impl Clone for Method

source§

fn clone(&self) -> Method

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 Method

source§

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

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

impl From<Method> for Element

source§

fn from(value: Method) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Method

source§

fn eq(&self, other: &Method) -> 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 Method

§

type Error = Error

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

fn try_from(elem: Element) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl StructuralPartialEq for Method

Auto Trait Implementations§

§

impl Freeze for Method

§

impl RefUnwindSafe for Method

§

impl Send for Method

§

impl Sync for Method

§

impl Unpin for Method

§

impl UnwindSafe for Method

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.