pub struct OAuthConfigurationResponse {
pub http_session_max_inactive_interval: Option<i32>,
pub logout_url: Option<String>,
pub oauth_configuration: Option<Box<OAuth2Configuration>>,
}
Expand description
OAuthConfigurationResponse :
Fields§
§http_session_max_inactive_interval: Option<i32>
§logout_url: Option<String>
§oauth_configuration: Option<Box<OAuth2Configuration>>
Implementations§
Source§impl OAuthConfigurationResponse
impl OAuthConfigurationResponse
Sourcepub fn new() -> OAuthConfigurationResponse
pub fn new() -> OAuthConfigurationResponse
Trait Implementations§
Source§impl Clone for OAuthConfigurationResponse
impl Clone for OAuthConfigurationResponse
Source§fn clone(&self) -> OAuthConfigurationResponse
fn clone(&self) -> OAuthConfigurationResponse
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 OAuthConfigurationResponse
impl Debug for OAuthConfigurationResponse
Source§impl Default for OAuthConfigurationResponse
impl Default for OAuthConfigurationResponse
Source§fn default() -> OAuthConfigurationResponse
fn default() -> OAuthConfigurationResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OAuthConfigurationResponse
impl<'de> Deserialize<'de> for OAuthConfigurationResponse
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
impl StructuralPartialEq for OAuthConfigurationResponse
Auto Trait Implementations§
impl Freeze for OAuthConfigurationResponse
impl RefUnwindSafe for OAuthConfigurationResponse
impl Send for OAuthConfigurationResponse
impl Sync for OAuthConfigurationResponse
impl Unpin for OAuthConfigurationResponse
impl UnwindSafe for OAuthConfigurationResponse
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