pub struct RoomRelationsResponseTemplate {
pub chunk: Vec<Raw<AnyTimelineEvent>>,
pub next_batch: Option<String>,
pub prev_batch: Option<String>,
pub recursion_depth: Option<u32>,
}
Available on crate feature
testing
and non-target_family="wasm"
only.Expand description
A response to a RoomRelationsEndpoint
query.
Fields§
§chunk: Vec<Raw<AnyTimelineEvent>>
The set of timeline events returned by this query.
next_batch: Option<String>
An opaque string representing a pagination token, which semantics depend on the direction used in the request.
prev_batch: Option<String>
An opaque string representing a pagination token, which semantics depend on the direction used in the request.
recursion_depth: Option<u32>
If recurse
was set on the request, the depth to which the server
recursed.
If recurse
was not set, this field must be absent.
Implementations§
Source§impl RoomRelationsResponseTemplate
impl RoomRelationsResponseTemplate
Sourcepub fn events(self, chunk: Vec<impl Into<Raw<AnyTimelineEvent>>>) -> Self
pub fn events(self, chunk: Vec<impl Into<Raw<AnyTimelineEvent>>>) -> Self
Fill the events returned as part of this response.
Sourcepub fn next_batch(self, token: impl Into<String>) -> Self
pub fn next_batch(self, token: impl Into<String>) -> Self
Fill the next_batch
token returned as part of this response.
Sourcepub fn prev_batch(self, token: impl Into<String>) -> Self
pub fn prev_batch(self, token: impl Into<String>) -> Self
Fill the prev_batch
token returned as part of this response.
Sourcepub fn recursion_depth(self, depth: u32) -> Self
pub fn recursion_depth(self, depth: u32) -> Self
Fill the recursion depth returned in this response.
Trait Implementations§
Source§impl Default for RoomRelationsResponseTemplate
impl Default for RoomRelationsResponseTemplate
Source§fn default() -> RoomRelationsResponseTemplate
fn default() -> RoomRelationsResponseTemplate
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RoomRelationsResponseTemplate
impl RefUnwindSafe for RoomRelationsResponseTemplate
impl Send for RoomRelationsResponseTemplate
impl Sync for RoomRelationsResponseTemplate
impl Unpin for RoomRelationsResponseTemplate
impl UnwindSafe for RoomRelationsResponseTemplate
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CompatExt for T
impl<T> CompatExt for T
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
, which can then be
downcast
into Box<dyn ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
, which can then be further
downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
Source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
Source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more