#[non_exhaustive]pub struct ProvisionBigQueryExportRequest {
pub parent: String,
/* private fields */
}Expand description
The request message to provision BigQuery Export configuration.
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.parent: StringRequired. The instance for which BigQuery export is being provisioned. Format: projects/{project}/locations/{location}/instances/{instance}
Implementations§
Trait Implementations§
Source§impl Clone for ProvisionBigQueryExportRequest
impl Clone for ProvisionBigQueryExportRequest
Source§fn clone(&self) -> ProvisionBigQueryExportRequest
fn clone(&self) -> ProvisionBigQueryExportRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for ProvisionBigQueryExportRequest
impl Default for ProvisionBigQueryExportRequest
Source§fn default() -> ProvisionBigQueryExportRequest
fn default() -> ProvisionBigQueryExportRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ProvisionBigQueryExportRequest
impl PartialEq for ProvisionBigQueryExportRequest
Source§fn eq(&self, other: &ProvisionBigQueryExportRequest) -> bool
fn eq(&self, other: &ProvisionBigQueryExportRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProvisionBigQueryExportRequest
Auto Trait Implementations§
impl Freeze for ProvisionBigQueryExportRequest
impl RefUnwindSafe for ProvisionBigQueryExportRequest
impl Send for ProvisionBigQueryExportRequest
impl Sync for ProvisionBigQueryExportRequest
impl Unpin for ProvisionBigQueryExportRequest
impl UnsafeUnpin for ProvisionBigQueryExportRequest
impl UnwindSafe for ProvisionBigQueryExportRequest
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