pub struct ResourceGroup {
pub name: String,
pub location: String,
pub properties: ResourceGroupProperties,
pub tags: Option<HashMap<String, String>>,
pub id: String,
pub managed_by: Option<String>,
}Expand description
Resource Group information
Fields§
§name: StringResource group name
location: StringResource group location
properties: ResourceGroupPropertiesResource group properties
Associated tags
id: StringResource group ID
managed_by: Option<String>Managed by (if applicable)
Trait Implementations§
Source§impl Clone for ResourceGroup
impl Clone for ResourceGroup
Source§fn clone(&self) -> ResourceGroup
fn clone(&self) -> ResourceGroup
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ResourceGroup
impl Debug for ResourceGroup
Source§impl<'de> Deserialize<'de> for ResourceGroup
impl<'de> Deserialize<'de> for ResourceGroup
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
Auto Trait Implementations§
impl Freeze for ResourceGroup
impl RefUnwindSafe for ResourceGroup
impl Send for ResourceGroup
impl Sync for ResourceGroup
impl Unpin for ResourceGroup
impl UnsafeUnpin for ResourceGroup
impl UnwindSafe for ResourceGroup
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