pub struct ProviderCfg {
pub kind: String,
pub zone: String,
pub record: String,
pub alias: Option<String>,
pub record_type: String,
pub ttl: u32,
pub token: String,
pub access_key: Option<String>,
pub access_secret: Option<String>,
pub region: Option<String>,
}Fields§
§kind: String§zone: String§record: String§alias: Option<String>§record_type: String§ttl: u32§token: String§access_key: Option<String>§access_secret: Option<String>§region: Option<String>Trait Implementations§
Source§impl Clone for ProviderCfg
impl Clone for ProviderCfg
Source§fn clone(&self) -> ProviderCfg
fn clone(&self) -> ProviderCfg
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 ProviderCfg
impl Debug for ProviderCfg
Source§impl<'de> Deserialize<'de> for ProviderCfg
impl<'de> Deserialize<'de> for ProviderCfg
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 Validate for ProviderCfg
impl Validate for ProviderCfg
Source§impl<'v_a> ValidateArgs<'v_a> for ProviderCfg
impl<'v_a> ValidateArgs<'v_a> for ProviderCfg
Auto Trait Implementations§
impl Freeze for ProviderCfg
impl RefUnwindSafe for ProviderCfg
impl Send for ProviderCfg
impl Sync for ProviderCfg
impl Unpin for ProviderCfg
impl UnwindSafe for ProviderCfg
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