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 AsXmlText for DataFormType
impl AsXmlText for DataFormType
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 FromXmlText for DataFormType
impl FromXmlText for DataFormType
Source§fn from_xml_text(s: String) -> Result<DataFormType, Error>
fn from_xml_text(s: String) -> Result<DataFormType, Error>
Convert the given XML text to a value.
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
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> AsOptionalXmlText for Twhere
T: AsXmlText,
impl<T> AsOptionalXmlText for Twhere
T: AsXmlText,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString
. Read more