Struct xmpp_parsers::data_forms::DataForm
source · pub struct DataForm {
pub type_: DataFormType,
pub form_type: Option<String>,
pub title: Option<String>,
pub instructions: Option<String>,
pub fields: Vec<Field>,
}
Expand description
This is a form to be sent to another entity for filling.
Fields§
§type_: DataFormType
The type of this form, telling the other party which action to execute.
form_type: Option<String>
An easy accessor for the FORM_TYPE of this form, see XEP-0068 for more information.
title: Option<String>
The title of this form.
instructions: Option<String>
The instructions given with this form.
fields: Vec<Field>
A list of fields comprising this form.
Implementations§
Trait Implementations§
source§impl From<ServerInfo> for DataForm
impl From<ServerInfo> for DataForm
source§fn from(server_info: ServerInfo) -> DataForm
fn from(server_info: ServerInfo) -> DataForm
Converts to this type from the input type.
source§impl FromXml for DataForm
impl FromXml for DataForm
§type Builder = FromEventsViaElement<DataForm>
type Builder = FromEventsViaElement<DataForm>
A builder type used to construct the element. Read more
source§fn from_events(
qname: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( qname: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
source§impl TryFrom<DataForm> for ServerInfo
impl TryFrom<DataForm> for ServerInfo
source§impl TryFrom<Element> for DataForm
impl TryFrom<Element> for DataForm
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
impl StructuralPartialEq for DataForm
Auto Trait Implementations§
impl Freeze for DataForm
impl RefUnwindSafe for DataForm
impl Send for DataForm
impl Sync for DataForm
impl Unpin for DataForm
impl UnwindSafe for DataForm
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
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)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)