Struct xmpp_parsers::rsm::SetQuery
source · pub struct SetQuery {
pub max: Option<usize>,
pub after: Option<String>,
pub before: Option<String>,
pub index: Option<usize>,
}
Expand description
Requests paging through a potentially big set of items (represented by an UID).
Fields§
§max: Option<usize>
Limit the number of items, or use the recipient’s defaults if None.
after: Option<String>
The UID after which to give results, or if None it is the element “before” the first item, effectively an index of negative one.
before: Option<String>
The UID before which to give results, or if None it starts with the last page of the full set.
index: Option<usize>
Numerical index of the page (deprecated).
Trait Implementations§
source§impl PartialEq for SetQuery
impl PartialEq for SetQuery
impl StructuralPartialEq for SetQuery
Auto Trait Implementations§
impl RefUnwindSafe for SetQuery
impl Send for SetQuery
impl Sync for SetQuery
impl Unpin for SetQuery
impl UnwindSafe for SetQuery
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