pub struct SessionUpdateResponse {
pub updated_at: String,
}
Expand description
Represents the successful response from a session update operation.
When a session is updated via the API (e.g., using ParseSessionHandle::update_by_object_id
),
the server typically responds with the updatedAt
timestamp of the modified session.
Fields§
§updated_at: String
The timestamp indicating when the session was last updated.
Trait Implementations§
Source§impl Clone for SessionUpdateResponse
impl Clone for SessionUpdateResponse
Source§fn clone(&self) -> SessionUpdateResponse
fn clone(&self) -> SessionUpdateResponse
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 SessionUpdateResponse
impl Debug for SessionUpdateResponse
Source§impl<'de> Deserialize<'de> for SessionUpdateResponse
impl<'de> Deserialize<'de> for SessionUpdateResponse
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 SessionUpdateResponse
impl RefUnwindSafe for SessionUpdateResponse
impl Send for SessionUpdateResponse
impl Sync for SessionUpdateResponse
impl Unpin for SessionUpdateResponse
impl UnwindSafe for SessionUpdateResponse
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