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
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
https://xmpp.org/extensions/xep-0122.html#usercases-validation.open
Range
To indicate that the value should fall within a certain range, the
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
https://xmpp.org/extensions/xep-0122.html#usercases-validation.range
Fields
Regex(String)
To indicate that the value should be restricted to a regular expression, the
https://xmpp.org/extensions/xep-0122.html#usercases-validatoin.regex
Trait Implementations§
source§impl PartialEq for Method
impl PartialEq for Method
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> 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
)