pub struct GoogleCloudRunV2SubmitBuildResponse {
pub base_image_uri: Option<String>,
pub base_image_warning: Option<String>,
pub build_operation: Option<GoogleLongrunningOperation>,
}Expand description
Response message for submitting a Build.
§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).
- locations builds submit projects (response)
Fields§
§base_image_uri: Option<String>URI of the base builder image in Artifact Registry being used in the build. Used to opt into automatic base image updates.
base_image_warning: Option<String>Warning message for the base image.
build_operation: Option<GoogleLongrunningOperation>Cloud Build operation to be polled via CloudBuild API.
Trait Implementations§
Source§impl Clone for GoogleCloudRunV2SubmitBuildResponse
impl Clone for GoogleCloudRunV2SubmitBuildResponse
Source§fn clone(&self) -> GoogleCloudRunV2SubmitBuildResponse
fn clone(&self) -> GoogleCloudRunV2SubmitBuildResponse
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 Default for GoogleCloudRunV2SubmitBuildResponse
impl Default for GoogleCloudRunV2SubmitBuildResponse
Source§fn default() -> GoogleCloudRunV2SubmitBuildResponse
fn default() -> GoogleCloudRunV2SubmitBuildResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudRunV2SubmitBuildResponse
impl<'de> Deserialize<'de> for GoogleCloudRunV2SubmitBuildResponse
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>,
Deserialize this value from the given Serde deserializer. Read more
impl ResponseResult for GoogleCloudRunV2SubmitBuildResponse
Auto Trait Implementations§
impl Freeze for GoogleCloudRunV2SubmitBuildResponse
impl RefUnwindSafe for GoogleCloudRunV2SubmitBuildResponse
impl Send for GoogleCloudRunV2SubmitBuildResponse
impl Sync for GoogleCloudRunV2SubmitBuildResponse
impl Unpin for GoogleCloudRunV2SubmitBuildResponse
impl UnwindSafe for GoogleCloudRunV2SubmitBuildResponse
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