pub struct SessionListQuery {
pub offset: usize,
pub limit: usize,
pub since_ms: Option<i64>,
pub until_ms: Option<i64>,
}Fields§
§offset: usize§limit: usize§since_ms: Option<i64>§until_ms: Option<i64>Trait Implementations§
Source§impl Clone for SessionListQuery
impl Clone for SessionListQuery
Source§fn clone(&self) -> SessionListQuery
fn clone(&self) -> SessionListQuery
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 SessionListQuery
impl Debug for SessionListQuery
Source§impl Default for SessionListQuery
impl Default for SessionListQuery
Source§fn default() -> SessionListQuery
fn default() -> SessionListQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionListQuery
impl<'de> Deserialize<'de> for SessionListQuery
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SessionListQuery, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SessionListQuery, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SessionListQuery
impl PartialEq for SessionListQuery
Source§fn eq(&self, other: &SessionListQuery) -> bool
fn eq(&self, other: &SessionListQuery) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SessionListQuery
impl Serialize for SessionListQuery
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for SessionListQuery
impl StructuralPartialEq for SessionListQuery
Auto Trait Implementations§
impl Freeze for SessionListQuery
impl RefUnwindSafe for SessionListQuery
impl Send for SessionListQuery
impl Sync for SessionListQuery
impl Unpin for SessionListQuery
impl UnsafeUnpin for SessionListQuery
impl UnwindSafe for SessionListQuery
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