pub struct MtlsEndpoints {
pub token_endpoint: Option<String>,
pub userinfo_endpoint: Option<String>,
pub revocation_endpoint: Option<String>,
pub introspection_endpoint: Option<String>,
pub device_authorization_endpoint: Option<String>,
}
Expand description
Fields§
§token_endpoint: Option<String>
mTLS token endpoint
userinfo_endpoint: Option<String>
mTLS userinfo endpoint
revocation_endpoint: Option<String>
mTLS revocation endpoint
introspection_endpoint: Option<String>
mTLS introspection endpoint
mTLS device authorization endpoint
Trait Implementations§
Source§impl Clone for MtlsEndpoints
impl Clone for MtlsEndpoints
Source§fn clone(&self) -> MtlsEndpoints
fn clone(&self) -> MtlsEndpoints
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MtlsEndpoints
impl Debug for MtlsEndpoints
Source§impl Default for MtlsEndpoints
impl Default for MtlsEndpoints
Source§fn default() -> MtlsEndpoints
fn default() -> MtlsEndpoints
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MtlsEndpoints
impl<'de> Deserialize<'de> for MtlsEndpoints
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 MtlsEndpoints
impl RefUnwindSafe for MtlsEndpoints
impl Send for MtlsEndpoints
impl Sync for MtlsEndpoints
impl Unpin for MtlsEndpoints
impl UnwindSafe for MtlsEndpoints
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