pub struct AzureArmResource {
pub id: String,
pub name: String,
pub location: Option<String>,
pub type: String,
}Expand description
AzureArmResource : An ARM resource the service principal can see.
Fields§
§id: String§name: String§location: Option<String>§type: StringImplementations§
Trait Implementations§
Source§impl Clone for AzureArmResource
impl Clone for AzureArmResource
Source§fn clone(&self) -> AzureArmResource
fn clone(&self) -> AzureArmResource
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 AzureArmResource
impl Debug for AzureArmResource
Source§impl Default for AzureArmResource
impl Default for AzureArmResource
Source§fn default() -> AzureArmResource
fn default() -> AzureArmResource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AzureArmResource
impl<'de> Deserialize<'de> for AzureArmResource
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 PartialEq for AzureArmResource
impl PartialEq for AzureArmResource
Source§fn eq(&self, other: &AzureArmResource) -> bool
fn eq(&self, other: &AzureArmResource) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AzureArmResource
impl Serialize for AzureArmResource
impl StructuralPartialEq for AzureArmResource
Auto Trait Implementations§
impl Freeze for AzureArmResource
impl RefUnwindSafe for AzureArmResource
impl Send for AzureArmResource
impl Sync for AzureArmResource
impl Unpin for AzureArmResource
impl UnsafeUnpin for AzureArmResource
impl UnwindSafe for AzureArmResource
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