pub struct SessionHistoryQuery {
pub offset: usize,
pub limit: Option<usize>,
}Expand description
Query parameters for reading session history.
Fields§
§offset: usizeNumber of messages to skip from the start of the transcript.
limit: Option<usize>Maximum number of messages to return.
Trait Implementations§
Source§impl Clone for SessionHistoryQuery
impl Clone for SessionHistoryQuery
Source§fn clone(&self) -> SessionHistoryQuery
fn clone(&self) -> SessionHistoryQuery
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 SessionHistoryQuery
impl Debug for SessionHistoryQuery
Source§impl Default for SessionHistoryQuery
impl Default for SessionHistoryQuery
Source§fn default() -> SessionHistoryQuery
fn default() -> SessionHistoryQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionHistoryQuery
impl<'de> Deserialize<'de> for SessionHistoryQuery
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
Source§impl PartialEq for SessionHistoryQuery
impl PartialEq for SessionHistoryQuery
Source§impl Serialize for SessionHistoryQuery
impl Serialize for SessionHistoryQuery
impl Eq for SessionHistoryQuery
impl StructuralPartialEq for SessionHistoryQuery
Auto Trait Implementations§
impl Freeze for SessionHistoryQuery
impl RefUnwindSafe for SessionHistoryQuery
impl Send for SessionHistoryQuery
impl Sync for SessionHistoryQuery
impl Unpin for SessionHistoryQuery
impl UnsafeUnpin for SessionHistoryQuery
impl UnwindSafe for SessionHistoryQuery
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.