Struct ruma_client_api::r0::context::get_context::Response [−][src]
#[non_exhaustive]pub struct Response { pub start: Option<String>, pub end: Option<String>, pub events_before: Vec<Raw<AnyRoomEvent>>, pub event: Option<Raw<AnyRoomEvent>>, pub events_after: Vec<Raw<AnyRoomEvent>>, pub state: Vec<Raw<AnyStateEvent>>, }
Expand description
Data in the response from the get_context API endpoint.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct {{ .. }} syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.start: Option<String>A token that can be used to paginate backwards with.
end: Option<String>A token that can be used to paginate forwards with.
events_before: Vec<Raw<AnyRoomEvent>>A list of room events that happened just before the requested event, in reverse-chronological order.
event: Option<Raw<AnyRoomEvent>>Details of the requested event.
events_after: Vec<Raw<AnyRoomEvent>>A list of room events that happened just after the requested event, in chronological order.
state: Vec<Raw<AnyStateEvent>>The state of the room at the last event returned.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Response
impl Send for Response
impl Sync for Response
impl Unpin for Response
impl UnwindSafe for Response
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> Instrument for T[src]
impl<T> Instrument for T[src]fn instrument(self, span: Span) -> Instrumented<Self>[src]
fn instrument(self, span: Span) -> Instrumented<Self>[src]Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>[src]
fn in_current_span(self) -> Instrumented<Self>[src]impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more