pub struct Oauth2Auth {
pub auth_url: String,
pub exchange_url: String,
pub refresh_url: String,
pub scopes: Vec<(String, String)>,
}
Fields§
§auth_url: String
§exchange_url: String
§refresh_url: String
§scopes: Vec<(String, String)>
Trait Implementations§
Source§impl Clone for Oauth2Auth
impl Clone for Oauth2Auth
Source§fn clone(&self) -> Oauth2Auth
fn clone(&self) -> Oauth2Auth
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 moreAuto Trait Implementations§
impl Freeze for Oauth2Auth
impl RefUnwindSafe for Oauth2Auth
impl Send for Oauth2Auth
impl Sync for Oauth2Auth
impl Unpin for Oauth2Auth
impl UnwindSafe for Oauth2Auth
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