pub struct AzureSubscription {
pub display_name: Option<String>,
pub id: Option<String>,
}Expand description
Represents an Azure subscription.
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 subscription.
id: Option<String>The UUID of the Azure subscription, for example, 291bba3f-e0a5-47bc-a099-3bdcb2a50a05.
Trait Implementations§
Source§impl Clone for AzureSubscription
impl Clone for AzureSubscription
Source§fn clone(&self) -> AzureSubscription
fn clone(&self) -> AzureSubscription
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 AzureSubscription
impl Debug for AzureSubscription
Source§impl Default for AzureSubscription
impl Default for AzureSubscription
Source§fn default() -> AzureSubscription
fn default() -> AzureSubscription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AzureSubscription
impl<'de> Deserialize<'de> for AzureSubscription
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 AzureSubscription
impl Serialize for AzureSubscription
impl Part for AzureSubscription
Auto Trait Implementations§
impl Freeze for AzureSubscription
impl RefUnwindSafe for AzureSubscription
impl Send for AzureSubscription
impl Sync for AzureSubscription
impl Unpin for AzureSubscription
impl UnwindSafe for AzureSubscription
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