Struct xmpp_parsers::data_forms::Option_
source · pub struct Option_ {
pub label: Option<String>,
pub value: String,
}
Expand description
Represents one of the possible values for a list- field.
Fields§
§label: Option<String>
The optional label to be displayed to the user for this option.
value: String
The value returned to the server when selecting this option.
Trait Implementations§
source§impl FromXml for Option_
impl FromXml for Option_
§type Builder = FromEventsViaElement<Option_>
type Builder = FromEventsViaElement<Option_>
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 IntoXml for Option_
impl IntoXml for Option_
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
The iterator type. Read more
source§fn into_event_iter(self) -> Result<Self::EventIter, Error>
fn into_event_iter(self) -> Result<Self::EventIter, Error>
Return an iterator which emits the contents of the struct or enum as
serialisable
rxml::Event
items.source§impl PartialEq for Option_
impl PartialEq for Option_
source§impl TryFrom<Element> for Option_
impl TryFrom<Element> for Option_
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
impl StructuralPartialEq for Option_
Auto Trait Implementations§
impl Freeze for Option_
impl RefUnwindSafe for Option_
impl Send for Option_
impl Sync for Option_
impl Unpin for Option_
impl UnwindSafe for Option_
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