pub struct CatchUpResponse {
pub request_id: u32,
pub filter: Filter,
pub messages: Vec<MessageFull>,
pub is_complete: bool,
pub next_since: Option<String>,
}Expand description
Catch-up response with historical messages
Fields§
§request_id: u32§filter: Filter§messages: Vec<MessageFull>§is_complete: bool§next_since: Option<String>Trait Implementations§
Source§impl Clone for CatchUpResponse
impl Clone for CatchUpResponse
Source§fn clone(&self) -> CatchUpResponse
fn clone(&self) -> CatchUpResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CatchUpResponse
impl Debug for CatchUpResponse
Source§impl<'de> Deserialize<'de> for CatchUpResponse
impl<'de> Deserialize<'de> for CatchUpResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CatchUpResponse
impl RefUnwindSafe for CatchUpResponse
impl Send for CatchUpResponse
impl Sync for CatchUpResponse
impl Unpin for CatchUpResponse
impl UnwindSafe for CatchUpResponse
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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