pub struct SyncPullResponse {
pub sessions: Vec<SessionSummary>,
pub next_cursor: Option<String>,
pub has_more: bool,
}Expand description
Returned by GET /api/sync/pull — paginated session data with cursor.
Fields§
§sessions: Vec<SessionSummary>§next_cursor: Option<String>Cursor for the next page (None = no more data)
has_more: boolTrait Implementations§
Source§impl Debug for SyncPullResponse
impl Debug for SyncPullResponse
Source§impl<'de> Deserialize<'de> for SyncPullResponse
impl<'de> Deserialize<'de> for SyncPullResponse
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 SyncPullResponse
impl RefUnwindSafe for SyncPullResponse
impl Send for SyncPullResponse
impl Sync for SyncPullResponse
impl Unpin for SyncPullResponse
impl UnwindSafe for SyncPullResponse
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