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 PartialEq for Service
impl PartialEq for Service
source§impl TryFrom<Element> for Service
impl TryFrom<Element> for Service
§type Error = FromElementError
type Error = FromElementError
impl IqGetPayload for Service
impl StructuralPartialEq for Service
Auto Trait Implementations§
impl Freeze for Service
impl RefUnwindSafe for Service
impl Send for Service
impl Sync for Service
impl Unpin for Service
impl UnwindSafe for Service
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
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)
clone_to_uninit
)