pub struct AzureTenant {
pub display_name: Option<String>,
pub id: Option<String>,
}Expand description
Represents a Microsoft Entra tenant.
This type is not used in any activity, and only used as part of another schema.
Fields§
§display_name: Option<String>The display name of the Azure tenant.
id: Option<String>The ID of the Microsoft Entra tenant, for example, “a11aaa11-aa11-1aa1-11aa-1aaa11a”.
Trait Implementations§
Source§impl Clone for AzureTenant
impl Clone for AzureTenant
Source§fn clone(&self) -> AzureTenant
fn clone(&self) -> AzureTenant
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 AzureTenant
impl Debug for AzureTenant
Source§impl Default for AzureTenant
impl Default for AzureTenant
Source§fn default() -> AzureTenant
fn default() -> AzureTenant
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AzureTenant
impl<'de> Deserialize<'de> for AzureTenant
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 Serialize for AzureTenant
impl Serialize for AzureTenant
impl Part for AzureTenant
Auto Trait Implementations§
impl Freeze for AzureTenant
impl RefUnwindSafe for AzureTenant
impl Send for AzureTenant
impl Sync for AzureTenant
impl Unpin for AzureTenant
impl UnwindSafe for AzureTenant
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