pub struct PushResponse {
pub synced_count: i64,
pub server_time: DateTime<Utc>,
}Expand description
Response from pushing sessions.
Fields§
§synced_count: i64Number of sessions successfully synced.
server_time: DateTime<Utc>Server timestamp for recording sync time.
Trait Implementations§
Source§impl Clone for PushResponse
impl Clone for PushResponse
Source§fn clone(&self) -> PushResponse
fn clone(&self) -> PushResponse
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 PushResponse
impl Debug for PushResponse
Source§impl<'de> Deserialize<'de> for PushResponse
impl<'de> Deserialize<'de> for PushResponse
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 PushResponse
impl RefUnwindSafe for PushResponse
impl Send for PushResponse
impl Sync for PushResponse
impl Unpin for PushResponse
impl UnwindSafe for PushResponse
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