Struct xmpp_parsers::rtt::Wait
source · pub struct Wait {
pub time: u32,
}
Expand description
Allow for the transmission of intervals, between real-time text actions, to recreate the pauses between key presses.
Fields§
§time: u32
Amount of milliseconds to wait before the next action.
Trait Implementations§
source§impl FromXml for Wait
impl FromXml for Wait
§type Builder = FromEventsViaElement<Wait>
type Builder = FromEventsViaElement<Wait>
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 Wait
impl IntoXml for Wait
§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 Wait
impl PartialEq for Wait
source§impl TryFrom<Element> for Wait
impl TryFrom<Element> for Wait
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
impl StructuralPartialEq for Wait
Auto Trait Implementations§
impl Freeze for Wait
impl RefUnwindSafe for Wait
impl Send for Wait
impl Sync for Wait
impl Unpin for Wait
impl UnwindSafe for Wait
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