pub struct BlResourceGroupRequest {
pub targets: Vec<Target>,
pub resource_group_name: String,
pub attributes: Option<Vec<ValuesMap>>,
pub children: Vec<ResourceGroupChild>,
}Fields§
§targets: Vec<Target>A list of targets.
resource_group_name: StringUser generated identifier, resource may be configured with identifier out-of-band.
attributes: Option<Vec<ValuesMap>>A list of valuesMap objects describing attributes.
children: Vec<ResourceGroupChild>A list of ResourceGroupChild that contains child ResourceIds and/or child
ResourceGroupIds
Trait Implementations§
Source§impl Clone for BlResourceGroupRequest
impl Clone for BlResourceGroupRequest
Source§fn clone(&self) -> BlResourceGroupRequest
fn clone(&self) -> BlResourceGroupRequest
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 BlResourceGroupRequest
impl Debug for BlResourceGroupRequest
Source§impl<'de> Deserialize<'de> for BlResourceGroupRequest
impl<'de> Deserialize<'de> for BlResourceGroupRequest
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 BlResourceGroupRequest
impl PartialEq for BlResourceGroupRequest
Source§fn eq(&self, other: &BlResourceGroupRequest) -> bool
fn eq(&self, other: &BlResourceGroupRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BlResourceGroupRequest
impl Serialize for BlResourceGroupRequest
Source§impl Validate for BlResourceGroupRequest
impl Validate for BlResourceGroupRequest
Source§impl<'v_a> ValidateArgs<'v_a> for BlResourceGroupRequest
impl<'v_a> ValidateArgs<'v_a> for BlResourceGroupRequest
impl StructuralPartialEq for BlResourceGroupRequest
Auto Trait Implementations§
impl Freeze for BlResourceGroupRequest
impl RefUnwindSafe for BlResourceGroupRequest
impl Send for BlResourceGroupRequest
impl Sync for BlResourceGroupRequest
impl Unpin for BlResourceGroupRequest
impl UnsafeUnpin for BlResourceGroupRequest
impl UnwindSafe for BlResourceGroupRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more