pub struct OAuthAuthorizationClient {
pub id: String,
pub name: String,
pub uri: Option<String>,
pub logo_uri: Option<String>,
}Expand description
OAuth authorization client info (subset shown during consent).
Fields§
§id: String§name: String§uri: Option<String>§logo_uri: Option<String>Trait Implementations§
Source§impl Clone for OAuthAuthorizationClient
impl Clone for OAuthAuthorizationClient
Source§fn clone(&self) -> OAuthAuthorizationClient
fn clone(&self) -> OAuthAuthorizationClient
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 OAuthAuthorizationClient
impl Debug for OAuthAuthorizationClient
Source§impl<'de> Deserialize<'de> for OAuthAuthorizationClient
impl<'de> Deserialize<'de> for OAuthAuthorizationClient
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 OAuthAuthorizationClient
impl RefUnwindSafe for OAuthAuthorizationClient
impl Send for OAuthAuthorizationClient
impl Sync for OAuthAuthorizationClient
impl Unpin for OAuthAuthorizationClient
impl UnwindSafe for OAuthAuthorizationClient
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