pub struct UpdateCredentialRequest {
pub adapter: Option<String>,
pub token: Option<String>,
pub active: Option<bool>,
pub emergency: Option<bool>,
pub config: Option<Value>,
pub backend: Option<String>,
pub route: Option<Value>,
}Expand description
Request body for updating a credential
Fields§
§adapter: Option<String>§token: Option<String>§active: Option<bool>§emergency: Option<bool>§config: Option<Value>§backend: Option<String>§route: Option<Value>Trait Implementations§
Source§impl Debug for UpdateCredentialRequest
impl Debug for UpdateCredentialRequest
Source§impl<'de> Deserialize<'de> for UpdateCredentialRequest
impl<'de> Deserialize<'de> for UpdateCredentialRequest
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 UpdateCredentialRequest
impl RefUnwindSafe for UpdateCredentialRequest
impl Send for UpdateCredentialRequest
impl Sync for UpdateCredentialRequest
impl Unpin for UpdateCredentialRequest
impl UnsafeUnpin for UpdateCredentialRequest
impl UnwindSafe for UpdateCredentialRequest
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