#[non_exhaustive]pub struct DeleteAppProfileRequest {
pub name: String,
pub ignore_warnings: bool,
/* private fields */
}Expand description
Request message for BigtableInstanceAdmin.DeleteAppProfile.
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 unique name of the app profile to be deleted. Values are of
the form
projects/{project}/instances/{instance}/appProfiles/{app_profile}.
ignore_warnings: boolRequired. If true, ignore safety checks when deleting the app profile.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteAppProfileRequest
impl Clone for DeleteAppProfileRequest
Source§fn clone(&self) -> DeleteAppProfileRequest
fn clone(&self) -> DeleteAppProfileRequest
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 DeleteAppProfileRequest
impl Debug for DeleteAppProfileRequest
Source§impl Default for DeleteAppProfileRequest
impl Default for DeleteAppProfileRequest
Source§fn default() -> DeleteAppProfileRequest
fn default() -> DeleteAppProfileRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteAppProfileRequest
impl Message for DeleteAppProfileRequest
Source§impl PartialEq for DeleteAppProfileRequest
impl PartialEq for DeleteAppProfileRequest
impl StructuralPartialEq for DeleteAppProfileRequest
Auto Trait Implementations§
impl Freeze for DeleteAppProfileRequest
impl RefUnwindSafe for DeleteAppProfileRequest
impl Send for DeleteAppProfileRequest
impl Sync for DeleteAppProfileRequest
impl Unpin for DeleteAppProfileRequest
impl UnwindSafe for DeleteAppProfileRequest
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