[][src]Struct seshat::LoadConfig

pub struct LoadConfig { /* fields omitted */ }

Configuration for the event loading methods.

A load configuration allows users to limit the number of events that will be loaded or to continue loading events from a specific point in the room history.

Implementations

impl LoadConfig[src]

pub fn new<R: Into<String>>(room_id: R) -> Self[src]

Create a new LoadConfig

The config will be created with a default limit of 20 events.

Arguments

  • room_id - The room from which to load the events.

pub fn limit(self, limit: usize) -> Self[src]

Set the maximum amount of events that we want to load.

Arguments

  • limit - The new limit that should be set.

pub fn from_event<E: Into<String>>(self, event_id: E) -> Self[src]

Set the event from which we should continue loading events.

Arguments

  • event_id - An event id of a previous event returned by this method. If set events that are older than the event with the given event ID will be returned.

pub fn direction(self, direction: LoadDirection) -> Self[src]

Set the direction that we are going to continue loading events from.

This is only used if we are continuing loading events, that is if from_event() is also set.

Arguments

  • direction - The direction that should be used.

Trait Implementations

impl Clone for LoadConfig[src]

impl Debug for LoadConfig[src]

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

impl Serialize for LoadConfig[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: for<'de> Deserialize<'de>, 
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> Erased for T

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

impl<T> Fruit for T where
    T: Send + Downcast, 
[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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>,