pub struct CosmosKeys {
pub primary_master_key: String,
pub secondary_master_key: String,
pub primary_readonly_master_key: String,
pub secondary_readonly_master_key: String,
}Expand description
Cosmos Account access keys
Fields§
§primary_master_key: StringPrimary master key
secondary_master_key: StringSecondary master key
primary_readonly_master_key: StringPrimary readonly master key
secondary_readonly_master_key: StringSecondary readonly master key
Trait Implementations§
Source§impl Clone for CosmosKeys
impl Clone for CosmosKeys
Source§fn clone(&self) -> CosmosKeys
fn clone(&self) -> CosmosKeys
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 CosmosKeys
impl Debug for CosmosKeys
Source§impl<'de> Deserialize<'de> for CosmosKeys
impl<'de> Deserialize<'de> for CosmosKeys
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 CosmosKeys
impl RefUnwindSafe for CosmosKeys
impl Send for CosmosKeys
impl Sync for CosmosKeys
impl Unpin for CosmosKeys
impl UnsafeUnpin for CosmosKeys
impl UnwindSafe for CosmosKeys
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