pub struct AppleAuthorizationRequest {
pub authorize_url: String,
pub redirect_uri: String,
pub state: String,
}Fields§
§redirect_uri: String§state: StringTrait Implementations§
Source§impl Clone for AppleAuthorizationRequest
impl Clone for AppleAuthorizationRequest
Source§fn clone(&self) -> AppleAuthorizationRequest
fn clone(&self) -> AppleAuthorizationRequest
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 AppleAuthorizationRequest
impl Debug for AppleAuthorizationRequest
Source§impl<'de> Deserialize<'de> for AppleAuthorizationRequest
impl<'de> Deserialize<'de> for AppleAuthorizationRequest
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 AppleAuthorizationRequest
impl RefUnwindSafe for AppleAuthorizationRequest
impl Send for AppleAuthorizationRequest
impl Sync for AppleAuthorizationRequest
impl Unpin for AppleAuthorizationRequest
impl UnsafeUnpin for AppleAuthorizationRequest
impl UnwindSafe for AppleAuthorizationRequest
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