#[non_exhaustive]pub struct GetProjectBillingInfoRequest {
pub name: String,
/* private fields */
}Expand description
Request message for GetProjectBillingInfo.
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. The resource name of the project for which billing information is
retrieved. For example, projects/tokyo-rain-123.
Implementations§
Trait Implementations§
Source§impl Clone for GetProjectBillingInfoRequest
impl Clone for GetProjectBillingInfoRequest
Source§fn clone(&self) -> GetProjectBillingInfoRequest
fn clone(&self) -> GetProjectBillingInfoRequest
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 GetProjectBillingInfoRequest
impl Debug for GetProjectBillingInfoRequest
Source§impl Default for GetProjectBillingInfoRequest
impl Default for GetProjectBillingInfoRequest
Source§fn default() -> GetProjectBillingInfoRequest
fn default() -> GetProjectBillingInfoRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetProjectBillingInfoRequest
impl PartialEq for GetProjectBillingInfoRequest
Source§fn eq(&self, other: &GetProjectBillingInfoRequest) -> bool
fn eq(&self, other: &GetProjectBillingInfoRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetProjectBillingInfoRequest
Auto Trait Implementations§
impl Freeze for GetProjectBillingInfoRequest
impl RefUnwindSafe for GetProjectBillingInfoRequest
impl Send for GetProjectBillingInfoRequest
impl Sync for GetProjectBillingInfoRequest
impl Unpin for GetProjectBillingInfoRequest
impl UnsafeUnpin for GetProjectBillingInfoRequest
impl UnwindSafe for GetProjectBillingInfoRequest
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