Struct xmpp_parsers::muc::muc::History
source · pub struct History {
pub maxchars: Option<u32>,
pub maxstanzas: Option<u32>,
pub seconds: Option<u32>,
pub since: Option<DateTime>,
}
Expand description
Represents the query for messages before our join.
Fields§
§maxchars: Option<u32>
How many characters of history to send, in XML characters.
maxstanzas: Option<u32>
How many messages to send.
seconds: Option<u32>
Only send messages received in these last seconds.
since: Option<DateTime>
Only send messages after this date.
Implementations§
source§impl History
impl History
sourcepub fn with_maxchars(self, maxchars: u32) -> Self
pub fn with_maxchars(self, maxchars: u32) -> Self
Set how many characters of history to send.
sourcepub fn with_maxstanzas(self, maxstanzas: u32) -> Self
pub fn with_maxstanzas(self, maxstanzas: u32) -> Self
Set how many messages to send.
sourcepub fn with_seconds(self, seconds: u32) -> Self
pub fn with_seconds(self, seconds: u32) -> Self
Only send messages received in these last seconds.
sourcepub fn with_since(self, since: DateTime) -> Self
pub fn with_since(self, since: DateTime) -> Self
Only send messages received since this date.
Trait Implementations§
source§impl FromXml for History
impl FromXml for History
§type Builder = FromEventsViaElement<History>
type Builder = FromEventsViaElement<History>
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 History
impl IntoXml for History
§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 History
impl PartialEq for History
impl StructuralPartialEq for History
Auto Trait Implementations§
impl Freeze for History
impl RefUnwindSafe for History
impl Send for History
impl Sync for History
impl Unpin for History
impl UnwindSafe for History
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