pub struct AzureActiveDirectoryApp {
pub application_id: String,
pub app_key: String,
pub tenant_id: String,
}
Expand description
Azure Active Directory Application
Fields§
§application_id: String
Application ID of the Azure Active Directory Application
app_key: String
Key used to authenticate to the Azure Active Directory Application
tenant_id: String
Tenant id of the customer
Implementations§
Trait Implementations§
Source§impl Clone for AzureActiveDirectoryApp
impl Clone for AzureActiveDirectoryApp
Source§fn clone(&self) -> AzureActiveDirectoryApp
fn clone(&self) -> AzureActiveDirectoryApp
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 AzureActiveDirectoryApp
impl Debug for AzureActiveDirectoryApp
Source§impl<'de> Deserialize<'de> for AzureActiveDirectoryApp
impl<'de> Deserialize<'de> for AzureActiveDirectoryApp
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 AzureActiveDirectoryApp
impl PartialEq for AzureActiveDirectoryApp
Source§impl Serialize for AzureActiveDirectoryApp
impl Serialize for AzureActiveDirectoryApp
impl StructuralPartialEq for AzureActiveDirectoryApp
Auto Trait Implementations§
impl Freeze for AzureActiveDirectoryApp
impl RefUnwindSafe for AzureActiveDirectoryApp
impl Send for AzureActiveDirectoryApp
impl Sync for AzureActiveDirectoryApp
impl Unpin for AzureActiveDirectoryApp
impl UnwindSafe for AzureActiveDirectoryApp
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