pub struct OauthEndpoints {
pub oauth_server: String,
pub discovery: String,
pub authorize: String,
pub token: String,
pub regsiter: String,
pub introspect: String,
pub revoke: String,
pub userinfo: String,
pub jwks: String,
}Fields§
§oauth_server: String§discovery: String§token: String§regsiter: String§introspect: String§revoke: String§userinfo: String§jwks: StringTrait Implementations§
Source§impl Clone for OauthEndpoints
impl Clone for OauthEndpoints
Source§fn clone(&self) -> OauthEndpoints
fn clone(&self) -> OauthEndpoints
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 OauthEndpoints
impl RefUnwindSafe for OauthEndpoints
impl Send for OauthEndpoints
impl Sync for OauthEndpoints
impl Unpin for OauthEndpoints
impl UnwindSafe for OauthEndpoints
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