#[non_exhaustive]pub struct MoveBillingAccountRequest {
pub name: String,
pub destination_parent: String,
/* private fields */
}Expand description
Request message for MoveBillingAccount RPC.
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 billing account to move.
Must be of the form billingAccounts/{billing_account_id}.
The specified billing account cannot be a subaccount, since a subaccount
always belongs to the same organization as its parent account.
destination_parent: StringRequired. The resource name of the Organization to move
the billing account under.
Must be of the form organizations/{organization_id}.
Implementations§
Source§impl MoveBillingAccountRequest
impl MoveBillingAccountRequest
Trait Implementations§
Source§impl Clone for MoveBillingAccountRequest
impl Clone for MoveBillingAccountRequest
Source§fn clone(&self) -> MoveBillingAccountRequest
fn clone(&self) -> MoveBillingAccountRequest
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 MoveBillingAccountRequest
impl Debug for MoveBillingAccountRequest
Source§impl Default for MoveBillingAccountRequest
impl Default for MoveBillingAccountRequest
Source§fn default() -> MoveBillingAccountRequest
fn default() -> MoveBillingAccountRequest
Returns the “default value” for a type. Read more
Source§impl Message for MoveBillingAccountRequest
impl Message for MoveBillingAccountRequest
impl StructuralPartialEq for MoveBillingAccountRequest
Auto Trait Implementations§
impl Freeze for MoveBillingAccountRequest
impl RefUnwindSafe for MoveBillingAccountRequest
impl Send for MoveBillingAccountRequest
impl Sync for MoveBillingAccountRequest
impl Unpin for MoveBillingAccountRequest
impl UnsafeUnpin for MoveBillingAccountRequest
impl UnwindSafe for MoveBillingAccountRequest
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