Struct xmpp_parsers::extdisco::Service
source · pub struct Service {
pub action: Action,
pub expires: Option<DateTime>,
pub host: String,
pub name: Option<String>,
pub password: Option<String>,
pub port: Option<u16>,
pub restricted: Restricted,
pub transport: Option<Transport>,
pub type_: Type,
pub username: Option<String>,
pub ext_info: Vec<DataForm>,
}
Expand description
Structure representing a <service xmlns='urn:xmpp:extdisco:2'/>
element.
Fields§
§action: Action
When sending a push update, the action value indicates if the service is being added or deleted from the set of known services (or simply being modified).
expires: Option<DateTime>
A timestamp indicating when the provided username and password credentials will expire.
host: String
Either a fully qualified domain name (FQDN) or an IP address (IPv4 or IPv6).
name: Option<String>
A friendly (human-readable) name or label for the service.
password: Option<String>
A service- or server-generated password for use at the service.
port: Option<u16>
The communications port to be used at the host.
restricted: Restricted
A boolean value indicating that username and password credentials are required and will need to be requested if not already provided.
transport: Option<Transport>
The underlying transport protocol to be used when communicating with the service (typically either TCP or UDP).
type_: Type
The service type as registered with the XMPP Registrar.
username: Option<String>
A service- or server-generated username for use at the service.
ext_info: Vec<DataForm>
Extended information
Trait Implementations§
source§impl FromXml for Service
impl FromXml for Service
§type Builder = FromEventsViaElement<Service>
type Builder = FromEventsViaElement<Service>
source§fn from_events(
qname: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( qname: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
source§impl IntoXml for Service
impl IntoXml for Service
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
source§fn into_event_iter(self) -> Result<Self::EventIter, Error>
fn into_event_iter(self) -> Result<Self::EventIter, Error>
rxml::Event
items.