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
source§impl TryFrom<Element> for SetQuery
impl TryFrom<Element> for SetQuery
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
impl StructuralPartialEq for SetQuery
Auto Trait Implementations§
impl Freeze for SetQuery
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
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
)