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