#[non_exhaustive]pub struct AzureSubscription {
pub id: String,
pub display_name: String,
/* private fields */
}Expand description
Represents an Azure subscription.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: StringThe UUID of the Azure subscription, for example,
291bba3f-e0a5-47bc-a099-3bdcb2a50a05.
display_name: StringThe display name of the Azure subscription.
Implementations§
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 Message for AzureSubscription
impl Message for AzureSubscription
Source§impl PartialEq for AzureSubscription
impl PartialEq for AzureSubscription
impl StructuralPartialEq 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