#[non_exhaustive]pub struct UpdateGroupQueryOutput {
pub group_query: Option<GroupQuery>,
/* private fields */
}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.group_query: Option<GroupQuery>The updated resource query associated with the resource group after the update.
Implementations§
source§impl UpdateGroupQueryOutput
impl UpdateGroupQueryOutput
sourcepub fn group_query(&self) -> Option<&GroupQuery>
pub fn group_query(&self) -> Option<&GroupQuery>
The updated resource query associated with the resource group after the update.
source§impl UpdateGroupQueryOutput
impl UpdateGroupQueryOutput
sourcepub fn builder() -> UpdateGroupQueryOutputBuilder
pub fn builder() -> UpdateGroupQueryOutputBuilder
Creates a new builder-style object to manufacture UpdateGroupQueryOutput.
Trait Implementations§
source§impl Clone for UpdateGroupQueryOutput
impl Clone for UpdateGroupQueryOutput
source§fn clone(&self) -> UpdateGroupQueryOutput
fn clone(&self) -> UpdateGroupQueryOutput
Returns a copy 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 UpdateGroupQueryOutput
impl Debug for UpdateGroupQueryOutput
source§impl PartialEq for UpdateGroupQueryOutput
impl PartialEq for UpdateGroupQueryOutput
source§fn eq(&self, other: &UpdateGroupQueryOutput) -> bool
fn eq(&self, other: &UpdateGroupQueryOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for UpdateGroupQueryOutput
impl RequestId for UpdateGroupQueryOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for UpdateGroupQueryOutput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateGroupQueryOutput
impl Send for UpdateGroupQueryOutput
impl Sync for UpdateGroupQueryOutput
impl Unpin for UpdateGroupQueryOutput
impl UnwindSafe for UpdateGroupQueryOutput
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