pub struct AuthAppleRequest {
pub id_token: String,
pub name: Option<String>,
}Expand description
Request body for Apple Sign-In.
Fields§
§id_token: StringThe Apple identity token (JWT from Sign in with Apple).
name: Option<String>Optional display name (only provided on first sign-in).
Trait Implementations§
Source§impl Clone for AuthAppleRequest
impl Clone for AuthAppleRequest
Source§fn clone(&self) -> AuthAppleRequest
fn clone(&self) -> AuthAppleRequest
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 AuthAppleRequest
impl Debug for AuthAppleRequest
Auto Trait Implementations§
impl Freeze for AuthAppleRequest
impl RefUnwindSafe for AuthAppleRequest
impl Send for AuthAppleRequest
impl Sync for AuthAppleRequest
impl Unpin for AuthAppleRequest
impl UnsafeUnpin for AuthAppleRequest
impl UnwindSafe for AuthAppleRequest
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