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 PartialEq for History
impl PartialEq for History
impl StructuralPartialEq for History
Auto Trait Implementations§
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