[][src]Struct ruma_client_api::r0::sync::sync_events::IncomingTimeline

pub struct IncomingTimeline {
    pub limited: bool,
    pub prev_batch: String,
    pub events: Vec<EventResult<RoomEvent>>,
}

'Incoming' variant of Timeline.

Fields

limited: bool

True if the number of events returned was limited by the limit on the filter.

prev_batch: String

A token that can be supplied to to the from parameter of the /rooms/{roomId}/messages endpoint.

events: Vec<EventResult<RoomEvent>>

A list of events.

Trait Implementations

impl<'de> Deserialize<'de> for IncomingTimeline[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, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

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