#[non_exhaustive]pub struct AzureManagementGroup {
pub id: String,
pub display_name: String,
/* private fields */
}Expand description
Represents an Azure management group.
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 management group, for example,
20000000-0001-0000-0000-000000000000.
display_name: StringThe display name of the Azure management group.
Implementations§
Trait Implementations§
Source§impl Clone for AzureManagementGroup
impl Clone for AzureManagementGroup
Source§fn clone(&self) -> AzureManagementGroup
fn clone(&self) -> AzureManagementGroup
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 AzureManagementGroup
impl Debug for AzureManagementGroup
Source§impl Default for AzureManagementGroup
impl Default for AzureManagementGroup
Source§fn default() -> AzureManagementGroup
fn default() -> AzureManagementGroup
Returns the “default value” for a type. Read more
Source§impl Message for AzureManagementGroup
impl Message for AzureManagementGroup
Source§impl PartialEq for AzureManagementGroup
impl PartialEq for AzureManagementGroup
impl StructuralPartialEq for AzureManagementGroup
Auto Trait Implementations§
impl Freeze for AzureManagementGroup
impl RefUnwindSafe for AzureManagementGroup
impl Send for AzureManagementGroup
impl Sync for AzureManagementGroup
impl Unpin for AzureManagementGroup
impl UnwindSafe for AzureManagementGroup
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