#[non_exhaustive]pub struct CreateVersionMetadataV1 {
pub cloud_build_id: String,
/* private fields */
}
Expand description
Metadata for the given google.longrunning.Operation during a google.appengine.v1.CreateVersionRequest.
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.cloud_build_id: String
The Cloud Build ID if one was created as part of the version create. @OutputOnly
Implementations§
Source§impl CreateVersionMetadataV1
impl CreateVersionMetadataV1
pub fn new() -> Self
Sourcepub fn set_cloud_build_id<T: Into<String>>(self, v: T) -> Self
pub fn set_cloud_build_id<T: Into<String>>(self, v: T) -> Self
Sets the value of cloud_build_id.
Trait Implementations§
Source§impl Clone for CreateVersionMetadataV1
impl Clone for CreateVersionMetadataV1
Source§fn clone(&self) -> CreateVersionMetadataV1
fn clone(&self) -> CreateVersionMetadataV1
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 CreateVersionMetadataV1
impl Debug for CreateVersionMetadataV1
Source§impl Default for CreateVersionMetadataV1
impl Default for CreateVersionMetadataV1
Source§fn default() -> CreateVersionMetadataV1
fn default() -> CreateVersionMetadataV1
Returns the “default value” for a type. Read more
Source§impl Message for CreateVersionMetadataV1
impl Message for CreateVersionMetadataV1
Source§impl PartialEq for CreateVersionMetadataV1
impl PartialEq for CreateVersionMetadataV1
impl StructuralPartialEq for CreateVersionMetadataV1
Auto Trait Implementations§
impl Freeze for CreateVersionMetadataV1
impl RefUnwindSafe for CreateVersionMetadataV1
impl Send for CreateVersionMetadataV1
impl Sync for CreateVersionMetadataV1
impl Unpin for CreateVersionMetadataV1
impl UnwindSafe for CreateVersionMetadataV1
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