pub struct GetAllSessionsResponse {
pub results: Vec<ParseSession>,
}Expand description
Represents the response structure when fetching multiple sessions.
This struct is used to deserialize the JSON array of session objects returned by endpoints
like /parse/sessions when queried with the Master Key.
Fields§
§results: Vec<ParseSession>A vector containing the ParseSession objects retrieved.
Trait Implementations§
Source§impl Clone for GetAllSessionsResponse
impl Clone for GetAllSessionsResponse
Source§fn clone(&self) -> GetAllSessionsResponse
fn clone(&self) -> GetAllSessionsResponse
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 GetAllSessionsResponse
impl Debug for GetAllSessionsResponse
Source§impl<'de> Deserialize<'de> for GetAllSessionsResponse
impl<'de> Deserialize<'de> for GetAllSessionsResponse
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 GetAllSessionsResponse
impl RefUnwindSafe for GetAllSessionsResponse
impl Send for GetAllSessionsResponse
impl Sync for GetAllSessionsResponse
impl Unpin for GetAllSessionsResponse
impl UnwindSafe for GetAllSessionsResponse
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