Enum xmpp_parsers::data_forms::DataFormType
source · pub enum DataFormType {
Cancel,
Form,
Result_,
Submit,
}
Expand description
Represents the type of a data form.
Variants§
Cancel
This is a cancel request for a prior type=“form” data form.
Form
This is a request for the recipient to fill this form and send it back as type=“submit”.
Result_
This is a result form, which contains what the requester asked for.
Submit
This is a complete response to a form received before.
Trait Implementations§
source§impl Clone for DataFormType
impl Clone for DataFormType
source§fn clone(&self) -> DataFormType
fn clone(&self) -> DataFormType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DataFormType
impl Debug for DataFormType
source§impl Display for DataFormType
impl Display for DataFormType
source§impl FromStr for DataFormType
impl FromStr for DataFormType
source§impl IntoAttributeValue for DataFormType
impl IntoAttributeValue for DataFormType
source§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
Turns this into an attribute string, or None if it shouldn’t be added.
source§impl PartialEq for DataFormType
impl PartialEq for DataFormType
source§fn eq(&self, other: &DataFormType) -> bool
fn eq(&self, other: &DataFormType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DataFormType
Auto Trait Implementations§
impl Freeze for DataFormType
impl RefUnwindSafe for DataFormType
impl Send for DataFormType
impl Sync for DataFormType
impl Unpin for DataFormType
impl UnwindSafe for DataFormType
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