pub struct UpdateApplicationOAuthRequest {
pub pkce_required: Option<bool>,
pub scopes: Option<Vec<String>>,
pub redirect_uris: Option<Vec<String>>,
}Expand description
Request to update application OAuth settings.
Fields§
§pkce_required: Option<bool>§scopes: Option<Vec<String>>§redirect_uris: Option<Vec<String>>Trait Implementations§
Source§impl Clone for UpdateApplicationOAuthRequest
impl Clone for UpdateApplicationOAuthRequest
Source§fn clone(&self) -> UpdateApplicationOAuthRequest
fn clone(&self) -> UpdateApplicationOAuthRequest
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 Default for UpdateApplicationOAuthRequest
impl Default for UpdateApplicationOAuthRequest
Source§fn default() -> UpdateApplicationOAuthRequest
fn default() -> UpdateApplicationOAuthRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateApplicationOAuthRequest
impl<'de> Deserialize<'de> for UpdateApplicationOAuthRequest
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UpdateApplicationOAuthRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UpdateApplicationOAuthRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for UpdateApplicationOAuthRequest
impl Serialize for UpdateApplicationOAuthRequest
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for UpdateApplicationOAuthRequest
impl RefUnwindSafe for UpdateApplicationOAuthRequest
impl Send for UpdateApplicationOAuthRequest
impl Sync for UpdateApplicationOAuthRequest
impl Unpin for UpdateApplicationOAuthRequest
impl UnsafeUnpin for UpdateApplicationOAuthRequest
impl UnwindSafe for UpdateApplicationOAuthRequest
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