Struct xmpp_parsers::data_forms::validate::Validate
source · pub struct Validate {
pub datatype: Option<Datatype>,
pub method: Option<Method>,
pub list_range: Option<ListRange>,
}
Expand description
Validation rules for a DataForms Field.
Fields§
§datatype: Option<Datatype>
The ‘datatype’ attribute specifies the datatype. This attribute is OPTIONAL, and defaults to “xs:string”. It MUST meet one of the following conditions:
- Start with “xs:”, and be one of the “built-in” datatypes defined in XML Schema Part 2
- Start with a prefix registered with the XMPP Registrar
- Start with “x:”, and specify a user-defined datatype.
Note that while “x:” allows for ad-hoc definitions, its use is NOT RECOMMENDED.
method: Option<Method>
The validation method. If no validation method is specified, form processors MUST
assume
Any validation method applied to a field of type “list-multi”, “list-single”, or “text-multi”
(other than
https://xmpp.org/extensions/xep-0122.html#usecases-validation
list_range: Option<ListRange>
For “list-multi”, validation can indicate (via the
The
https://xmpp.org/extensions/xep-0122.html#usecases-ranges
Trait Implementations§
source§impl PartialEq for Validate
impl PartialEq for Validate
impl StructuralPartialEq for Validate
Auto Trait Implementations§
impl Freeze for Validate
impl RefUnwindSafe for Validate
impl Send for Validate
impl Sync for Validate
impl Unpin for Validate
impl UnwindSafe for Validate
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
)