Struct xmpp_parsers::stream::Stream
source · pub struct Stream {
pub from: Option<BareJid>,
/* private fields */
}
Expand description
The stream opening for client-server communications.
Fields§
§from: Option<BareJid>
The JID of the entity opening this stream.
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 AsXml for Stream
impl AsXml for Stream
§type ItemIter<'xso_proc_as_xml_iter_lifetime> = StreamAsXmlIterator<'xso_proc_as_xml_iter_lifetime>
type ItemIter<'xso_proc_as_xml_iter_lifetime> = StreamAsXmlIterator<'xso_proc_as_xml_iter_lifetime>
The iterator type. Read more
source§fn as_xml_iter(&self) -> Result<Self::ItemIter<'_>, Error>
fn as_xml_iter(&self) -> Result<Self::ItemIter<'_>, Error>
Return an iterator which emits the contents of the struct or enum as
serialisable [
Item
] items.source§impl PartialEq for Stream
impl PartialEq for Stream
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
)