[][src]Struct ruma_client_api::r0::search::search_events::ResultGroup

pub struct ResultGroup {
    pub next_batch: Option<String>,
    pub order: UInt,
    pub results: Vec<EventId>,
}

A grouping of results, if requested.

Fields

next_batch: Option<String>

Token that can be used to get the next batch of results in the group, by passing as the next_batch parameter to the next call. If this field is absent, there are no more results in this group.

order: UInt

Key that can be used to order different groups.

results: Vec<EventId>

Which results are in this group.

Trait Implementations

impl Clone for ResultGroup[src]

impl Debug for ResultGroup[src]

impl<'de> Deserialize<'de> for ResultGroup[src]

impl Serialize for ResultGroup[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,