#[non_exhaustive]pub struct GoogleCloudRun {
pub service_uri: String,
/* private fields */
}Expand description
GoogleCloudRun represents the Cloud Run runtime.
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.service_uri: StringRequired. Immutable. The name of the Cloud Run service.
Format:
projects/{project}/locations/{location}/services/{service}.
Implementations§
Source§impl GoogleCloudRun
impl GoogleCloudRun
Trait Implementations§
Source§impl Clone for GoogleCloudRun
impl Clone for GoogleCloudRun
Source§fn clone(&self) -> GoogleCloudRun
fn clone(&self) -> GoogleCloudRun
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 GoogleCloudRun
impl Debug for GoogleCloudRun
Source§impl Default for GoogleCloudRun
impl Default for GoogleCloudRun
Source§fn default() -> GoogleCloudRun
fn default() -> GoogleCloudRun
Returns the “default value” for a type. Read more
Source§impl Message for GoogleCloudRun
impl Message for GoogleCloudRun
Source§impl PartialEq for GoogleCloudRun
impl PartialEq for GoogleCloudRun
impl StructuralPartialEq for GoogleCloudRun
Auto Trait Implementations§
impl Freeze for GoogleCloudRun
impl RefUnwindSafe for GoogleCloudRun
impl Send for GoogleCloudRun
impl Sync for GoogleCloudRun
impl Unpin for GoogleCloudRun
impl UnsafeUnpin for GoogleCloudRun
impl UnwindSafe for GoogleCloudRun
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