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 TryFrom<DataForm> for ServerInfo
impl TryFrom<DataForm> for ServerInfo
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)