#[non_exhaustive]pub struct BackendServiceOrchestrationInfo {
pub resource_uri: Option<String>,
/* private fields */
}Available on crate features
backend-services or region-backend-services only.Expand description
A message containing information about the resource or system that manages the backend service.
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.resource_uri: Option<String>The resource URI of the resource or system that manages the backend service.
Implementations§
Source§impl BackendServiceOrchestrationInfo
impl BackendServiceOrchestrationInfo
pub fn new() -> Self
Sourcepub fn set_resource_uri<T>(self, v: T) -> Self
pub fn set_resource_uri<T>(self, v: T) -> Self
Sets the value of resource_uri.
§Example
ⓘ
let x = BackendServiceOrchestrationInfo::new().set_resource_uri("example");Sourcepub fn set_or_clear_resource_uri<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_resource_uri<T>(self, v: Option<T>) -> Self
Sets or clears the value of resource_uri.
§Example
ⓘ
let x = BackendServiceOrchestrationInfo::new().set_or_clear_resource_uri(Some("example"));
let x = BackendServiceOrchestrationInfo::new().set_or_clear_resource_uri(None::<String>);Trait Implementations§
Source§impl Clone for BackendServiceOrchestrationInfo
impl Clone for BackendServiceOrchestrationInfo
Source§fn clone(&self) -> BackendServiceOrchestrationInfo
fn clone(&self) -> BackendServiceOrchestrationInfo
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 BackendServiceOrchestrationInfo
impl Default for BackendServiceOrchestrationInfo
Source§fn default() -> BackendServiceOrchestrationInfo
fn default() -> BackendServiceOrchestrationInfo
Returns the “default value” for a type. Read more
Source§impl PartialEq for BackendServiceOrchestrationInfo
impl PartialEq for BackendServiceOrchestrationInfo
Source§fn eq(&self, other: &BackendServiceOrchestrationInfo) -> bool
fn eq(&self, other: &BackendServiceOrchestrationInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BackendServiceOrchestrationInfo
Auto Trait Implementations§
impl Freeze for BackendServiceOrchestrationInfo
impl RefUnwindSafe for BackendServiceOrchestrationInfo
impl Send for BackendServiceOrchestrationInfo
impl Sync for BackendServiceOrchestrationInfo
impl Unpin for BackendServiceOrchestrationInfo
impl UnsafeUnpin for BackendServiceOrchestrationInfo
impl UnwindSafe for BackendServiceOrchestrationInfo
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