#[non_exhaustive]pub struct GetQuotaInfoRequest {
pub name: String,
/* private fields */
}Expand description
Message for getting a QuotaInfo
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.name: StringRequired. Identifier. The resource name of the quota info.
An example name:
projects/123/locations/global/services/compute.googleapis.com/quotaInfos/CpusPerProjectPerRegion
Implementations§
Trait Implementations§
Source§impl Clone for GetQuotaInfoRequest
impl Clone for GetQuotaInfoRequest
Source§impl Debug for GetQuotaInfoRequest
impl Debug for GetQuotaInfoRequest
Source§impl Default for GetQuotaInfoRequest
impl Default for GetQuotaInfoRequest
Source§impl Message for GetQuotaInfoRequest
impl Message for GetQuotaInfoRequest
Source§impl PartialEq for GetQuotaInfoRequest
impl PartialEq for GetQuotaInfoRequest
impl StructuralPartialEq for GetQuotaInfoRequest
Auto Trait Implementations§
impl Freeze for GetQuotaInfoRequest
impl RefUnwindSafe for GetQuotaInfoRequest
impl Send for GetQuotaInfoRequest
impl Sync for GetQuotaInfoRequest
impl Unpin for GetQuotaInfoRequest
impl UnsafeUnpin for GetQuotaInfoRequest
impl UnwindSafe for GetQuotaInfoRequest
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