Enum xmpp_parsers::ibb::Stanza
source · pub enum Stanza {
Iq,
Message,
}
Expand description
Which stanza type to use to exchange data.
Variants§
Iq
<iq/>
gives a feedback on whether the chunk has been received or not,
which is useful in the case the recipient might not receive them in a
timely manner, or to do your own throttling based on the results.
Message
<message/>
can be faster, since it doesn’t require any feedback, but in
practice it will be throttled by the servers on the way.
Trait Implementations§
source§impl AsXmlText for Stanza
impl AsXmlText for Stanza
source§impl IntoAttributeValue for Stanza
impl IntoAttributeValue for Stanza
source§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
Turns this into an attribute string, or None if it shouldn’t be added.
source§impl PartialEq for Stanza
impl PartialEq for Stanza
impl StructuralPartialEq for Stanza
Auto Trait Implementations§
impl Freeze for Stanza
impl RefUnwindSafe for Stanza
impl Send for Stanza
impl Sync for Stanza
impl Unpin for Stanza
impl UnwindSafe for Stanza
Blanket Implementations§
§impl<T> AsOptionalXmlText for Twhere
T: AsXmlText,
impl<T> AsOptionalXmlText for Twhere
T: AsXmlText,
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
)