Struct xmpp_parsers::ibb::Open
source · pub struct Open {
pub block_size: u16,
pub sid: StreamId,
pub stanza: Stanza,
}
Expand description
Starts an In-Band Bytestream session with the given parameters.
Fields§
§block_size: u16
Maximum size in bytes for each chunk.
sid: StreamId
The identifier to be used to create a stream.
stanza: Stanza
Which stanza type to use to exchange data.
Trait Implementations§
source§impl FromXml for Open
impl FromXml for Open
§type Builder = FromEventsViaElement<Open>
type Builder = FromEventsViaElement<Open>
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 Open
impl IntoXml for Open
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
The iterator type.
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 Open
impl PartialEq for Open
impl IqSetPayload for Open
impl StructuralPartialEq for Open
Auto Trait Implementations§
impl Freeze for Open
impl RefUnwindSafe for Open
impl Send for Open
impl Sync for Open
impl Unpin for Open
impl UnwindSafe for Open
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