#[non_exhaustive]pub struct ResourceGroupReference {
pub group: Option<String>,
/* private fields */
}Available on crate features
backend-services or region-backend-services only.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: Option<String>A URI referencing one of the instance groups or network endpoint groups listed in the backend service.
Implementations§
Trait Implementations§
Source§impl Clone for ResourceGroupReference
impl Clone for ResourceGroupReference
Source§fn clone(&self) -> ResourceGroupReference
fn clone(&self) -> ResourceGroupReference
Returns a duplicate 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 ResourceGroupReference
impl Debug for ResourceGroupReference
Source§impl Default for ResourceGroupReference
impl Default for ResourceGroupReference
Source§fn default() -> ResourceGroupReference
fn default() -> ResourceGroupReference
Returns the “default value” for a type. Read more
Source§impl Message for ResourceGroupReference
impl Message for ResourceGroupReference
Source§impl PartialEq for ResourceGroupReference
impl PartialEq for ResourceGroupReference
impl StructuralPartialEq for ResourceGroupReference
Auto Trait Implementations§
impl Freeze for ResourceGroupReference
impl RefUnwindSafe for ResourceGroupReference
impl Send for ResourceGroupReference
impl Sync for ResourceGroupReference
impl Unpin for ResourceGroupReference
impl UnwindSafe for ResourceGroupReference
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