pub struct SyncPullQuery {
pub team_id: String,
pub since: Option<String>,
pub limit: Option<u32>,
}Expand description
Query parameters for GET /api/sync/pull — cursor-based session sync.
Fields§
§team_id: String§since: Option<String>Cursor: uploaded_at of the last received session
limit: Option<u32>Max sessions per page (default 100)
Trait Implementations§
Source§impl Debug for SyncPullQuery
impl Debug for SyncPullQuery
Source§impl<'de> Deserialize<'de> for SyncPullQuery
impl<'de> Deserialize<'de> for SyncPullQuery
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 SyncPullQuery
impl RefUnwindSafe for SyncPullQuery
impl Send for SyncPullQuery
impl Sync for SyncPullQuery
impl Unpin for SyncPullQuery
impl UnwindSafe for SyncPullQuery
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