pub struct AuthConfigUpdateResponse {
pub success: bool,
pub auth_config: Option<AuthConfigInfo>,
}Expand description
Authentication configuration update response
Fields§
§success: boolSuccess status
auth_config: Option<AuthConfigInfo>Updated auth config
Trait Implementations§
Source§impl Clone for AuthConfigUpdateResponse
impl Clone for AuthConfigUpdateResponse
Source§fn clone(&self) -> AuthConfigUpdateResponse
fn clone(&self) -> AuthConfigUpdateResponse
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 AuthConfigUpdateResponse
impl Debug for AuthConfigUpdateResponse
Source§impl<'de> Deserialize<'de> for AuthConfigUpdateResponse
impl<'de> Deserialize<'de> for AuthConfigUpdateResponse
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 AuthConfigUpdateResponse
impl RefUnwindSafe for AuthConfigUpdateResponse
impl Send for AuthConfigUpdateResponse
impl Sync for AuthConfigUpdateResponse
impl Unpin for AuthConfigUpdateResponse
impl UnsafeUnpin for AuthConfigUpdateResponse
impl UnwindSafe for AuthConfigUpdateResponse
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