pub struct CredentialResponse {
pub id: String,
pub adapter: String,
pub active: bool,
pub emergency: bool,
pub config: Option<Value>,
pub backend: Option<String>,
pub route: Value,
pub instance_status: Option<String>,
}Expand description
Response for credential info
Fields§
§id: String§adapter: String§active: bool§emergency: bool§config: Option<Value>§backend: Option<String>§route: Value§instance_status: Option<String>Trait Implementations§
Source§impl Debug for CredentialResponse
impl Debug for CredentialResponse
Auto Trait Implementations§
impl Freeze for CredentialResponse
impl RefUnwindSafe for CredentialResponse
impl Send for CredentialResponse
impl Sync for CredentialResponse
impl Unpin for CredentialResponse
impl UnsafeUnpin for CredentialResponse
impl UnwindSafe for CredentialResponse
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