pub struct AppHubApplication {
pub container: Option<String>,
pub id: Option<String>,
pub location: Option<String>,
}Expand description
Resource identifiers associated with an AppHub application AppHub resources are of the form projects//locations//applications/ projects//locations//applications//services/ projects//locations//applications//workloads/ These resources can be reconstructed from the components below.
This type is not used in any activity, and only used as part of another schema.
Fields§
§container: Option<String>Resource container that owns the application. Example: “projects/management_project”
id: Option<String>Application Id. Example: “my-app”
location: Option<String>Location associated with the Application. Example: “us-east1”
Trait Implementations§
Source§impl Clone for AppHubApplication
impl Clone for AppHubApplication
Source§fn clone(&self) -> AppHubApplication
fn clone(&self) -> AppHubApplication
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 AppHubApplication
impl Debug for AppHubApplication
Source§impl Default for AppHubApplication
impl Default for AppHubApplication
Source§fn default() -> AppHubApplication
fn default() -> AppHubApplication
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AppHubApplication
impl<'de> Deserialize<'de> for AppHubApplication
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
Source§impl Serialize for AppHubApplication
impl Serialize for AppHubApplication
impl Part for AppHubApplication
Auto Trait Implementations§
impl Freeze for AppHubApplication
impl RefUnwindSafe for AppHubApplication
impl Send for AppHubApplication
impl Sync for AppHubApplication
impl Unpin for AppHubApplication
impl UnwindSafe for AppHubApplication
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