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

pub struct Criteria {
    pub event_context: Option<EventContext>,
    pub filter: Option<RoomEventFilter>,
    pub groupings: Option<Groupings>,
    pub include_state: Option<bool>,
    pub keys: Vec<SearchKeys>,
    pub order_by: Option<OrderBy>,
    pub search_term: String,
}

Criteria for searching a category of events.

Fields

event_context: Option<EventContext>

Configures whether any context for the events returned are included in the response.

filter: Option<RoomEventFilter>

A Filter to apply to the search.

groupings: Option<Groupings>

Requests that the server partitions the result set based on the provided list of keys.

include_state: Option<bool>

Requests the server return the current state for each room returned.

keys: Vec<SearchKeys>

The keys to search for. Defaults to all keys.

order_by: Option<OrderBy>

The order in which to search for results.

search_term: String

The string to search events for.

Trait Implementations

impl Clone for Criteria[src]

impl Debug for Criteria[src]

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

impl Serialize for Criteria[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>,