Struct google_spanner1::UpdateInstanceRequest
source · pub struct UpdateInstanceRequest {
pub instance: Option<Instance>,
pub field_mask: Option<String>,
}Expand description
The request for UpdateInstance.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- instances patch projects (request)
Fields§
§instance: Option<Instance>Required. The instance to update, which must always include the instance name. Otherwise, only fields mentioned in [][google.spanner.admin.instance.v1.UpdateInstanceRequest.field_mask] need be included.
field_mask: Option<String>Required. A mask specifying which fields in [][google.spanner.admin.instance.v1.UpdateInstanceRequest.instance] should be updated. The field mask must always be specified; this prevents any future fields in [][google.spanner.admin.instance.v1.Instance] from being erased accidentally by clients that do not know about them.
Trait Implementations§
source§impl Clone for UpdateInstanceRequest
impl Clone for UpdateInstanceRequest
source§fn clone(&self) -> UpdateInstanceRequest
fn clone(&self) -> UpdateInstanceRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateInstanceRequest
impl Debug for UpdateInstanceRequest
source§impl Default for UpdateInstanceRequest
impl Default for UpdateInstanceRequest
source§fn default() -> UpdateInstanceRequest
fn default() -> UpdateInstanceRequest
source§impl<'de> Deserialize<'de> for UpdateInstanceRequest
impl<'de> Deserialize<'de> for UpdateInstanceRequest
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl Serialize for UpdateInstanceRequest
impl Serialize for UpdateInstanceRequest
impl RequestValue for UpdateInstanceRequest
Auto Trait Implementations§
impl Freeze for UpdateInstanceRequest
impl RefUnwindSafe for UpdateInstanceRequest
impl Send for UpdateInstanceRequest
impl Sync for UpdateInstanceRequest
impl Unpin for UpdateInstanceRequest
impl UnwindSafe for UpdateInstanceRequest
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more