pub struct SignupResponse {
pub object_id: String,
pub session_token: String,
pub created_at: ParseDate,
}
Expand description
Represents the successful response from a user signup operation.
It includes the objectId
of the newly created user, their sessionToken
,
and the createdAt
timestamp.
Fields§
§object_id: String
§session_token: String
§created_at: ParseDate
Trait Implementations§
Source§impl Clone for SignupResponse
impl Clone for SignupResponse
Source§fn clone(&self) -> SignupResponse
fn clone(&self) -> SignupResponse
Returns a copy 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 SignupResponse
impl Debug for SignupResponse
Source§impl<'de> Deserialize<'de> for SignupResponse
impl<'de> Deserialize<'de> for SignupResponse
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 SignupResponse
impl RefUnwindSafe for SignupResponse
impl Send for SignupResponse
impl Sync for SignupResponse
impl Unpin for SignupResponse
impl UnwindSafe for SignupResponse
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