[][src]Struct rusoto_resource_groups::GroupQuery

pub struct GroupQuery {
    pub group_name: String,
    pub resource_query: ResourceQuery,
}

The underlying resource query of a resource group. Resources that match query results are part of the group.

Fields

group_name: String

The name of a resource group that is associated with a specific resource query.

resource_query: ResourceQuery

The resource query which determines which AWS resources are members of the associated resource group.

Trait Implementations

impl Clone for GroupQuery[src]

impl Debug for GroupQuery[src]

impl Default for GroupQuery[src]

impl<'de> Deserialize<'de> for GroupQuery[src]

impl PartialEq<GroupQuery> for GroupQuery[src]

impl StructuralPartialEq for GroupQuery[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.