Struct xmpp_parsers::stream::Stream
source · pub struct Stream {
pub from: Option<BareJid>,
pub to: Option<BareJid>,
pub id: Option<String>,
pub version: Option<String>,
pub xml_lang: Option<String>,
}
Expand description
The stream opening for client-server communications.
Fields§
§from: Option<BareJid>
The JID of the entity opening this stream.
to: Option<BareJid>
The JID of the entity receiving this stream opening.
id: Option<String>
The id of the stream, used for authentication challenges.
version: Option<String>
The XMPP version used during this stream.
xml_lang: Option<String>
The default human language for all subsequent stanzas, which will be transmitted to other entities for better localisation.
Implementations§
source§impl Stream
impl Stream
sourcepub fn with_from(self, from: BareJid) -> Stream
pub fn with_from(self, from: BareJid) -> Stream
Sets the @from attribute on this <stream:stream>
element.
sourcepub fn with_id(self, id: String) -> Stream
pub fn with_id(self, id: String) -> Stream
Sets the @id attribute on this <stream:stream>
element.
sourcepub fn with_lang(self, xml_lang: String) -> Stream
pub fn with_lang(self, xml_lang: String) -> Stream
Sets the @xml:lang attribute on this
<stream:stream>
element.
sourcepub fn is_version(&self, version: &str) -> bool
pub fn is_version(&self, version: &str) -> bool
Checks whether the version matches the expected one.
Trait Implementations§
source§impl FromXml for Stream
impl FromXml for Stream
§type Builder = FromEventsViaElement<Stream>
type Builder = FromEventsViaElement<Stream>
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 Stream
impl IntoXml for Stream
§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 Stream
impl PartialEq for Stream
source§impl TryFrom<Element> for Stream
impl TryFrom<Element> for Stream
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
impl StructuralPartialEq for Stream
Auto Trait Implementations§
impl Freeze for Stream
impl RefUnwindSafe for Stream
impl Send for Stream
impl Sync for Stream
impl Unpin for Stream
impl UnwindSafe for Stream
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
)