pub struct ProviderCredential {
pub api_key: Option<String>,
pub extra: Map<String, Value>,
}Expand description
One saved provider credential.
Fields§
§api_key: Option<String>§extra: Map<String, Value>Trait Implementations§
Source§impl Clone for ProviderCredential
impl Clone for ProviderCredential
Source§fn clone(&self) -> ProviderCredential
fn clone(&self) -> ProviderCredential
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProviderCredential
impl Debug for ProviderCredential
Source§impl<'de> Deserialize<'de> for ProviderCredential
impl<'de> Deserialize<'de> for ProviderCredential
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
Source§impl PartialEq for ProviderCredential
impl PartialEq for ProviderCredential
Source§impl Serialize for ProviderCredential
impl Serialize for ProviderCredential
impl StructuralPartialEq for ProviderCredential
Auto Trait Implementations§
impl Freeze for ProviderCredential
impl RefUnwindSafe for ProviderCredential
impl Send for ProviderCredential
impl Sync for ProviderCredential
impl Unpin for ProviderCredential
impl UnsafeUnpin for ProviderCredential
impl UnwindSafe for ProviderCredential
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