pub struct RecordPageQuery {
pub session_id: String,
pub offset: usize,
pub limit: usize,
pub since_ms: Option<i64>,
pub until_ms: Option<i64>,
}Fields§
§session_id: String§offset: usize§limit: usize§since_ms: Option<i64>§until_ms: Option<i64>Implementations§
Trait Implementations§
Source§impl Clone for RecordPageQuery
impl Clone for RecordPageQuery
Source§fn clone(&self) -> RecordPageQuery
fn clone(&self) -> RecordPageQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RecordPageQuery
impl Debug for RecordPageQuery
Source§impl<'de> Deserialize<'de> for RecordPageQuery
impl<'de> Deserialize<'de> for RecordPageQuery
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 RecordPageQuery
impl PartialEq for RecordPageQuery
Source§fn eq(&self, other: &RecordPageQuery) -> bool
fn eq(&self, other: &RecordPageQuery) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RecordPageQuery
impl Serialize for RecordPageQuery
impl Eq for RecordPageQuery
impl StructuralPartialEq for RecordPageQuery
Auto Trait Implementations§
impl Freeze for RecordPageQuery
impl RefUnwindSafe for RecordPageQuery
impl Send for RecordPageQuery
impl Sync for RecordPageQuery
impl Unpin for RecordPageQuery
impl UnsafeUnpin for RecordPageQuery
impl UnwindSafe for RecordPageQuery
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