pub struct AppHubService {
pub criticality_type: Option<String>,
pub environment_type: Option<String>,
pub id: Option<String>,
}Expand description
Metadata associated with an App Hub service.
This type is not used in any activity, and only used as part of another schema.
Fields§
§criticality_type: Option<String>Service criticality type Example: “CRITICAL”
environment_type: Option<String>Service environment type Example: “DEV”
id: Option<String>Service Id. Example: “my-service”
Trait Implementations§
Source§impl Clone for AppHubService
impl Clone for AppHubService
Source§fn clone(&self) -> AppHubService
fn clone(&self) -> AppHubService
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 AppHubService
impl Debug for AppHubService
Source§impl Default for AppHubService
impl Default for AppHubService
Source§fn default() -> AppHubService
fn default() -> AppHubService
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AppHubService
impl<'de> Deserialize<'de> for AppHubService
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 AppHubService
impl Serialize for AppHubService
impl Part for AppHubService
Auto Trait Implementations§
impl Freeze for AppHubService
impl RefUnwindSafe for AppHubService
impl Send for AppHubService
impl Sync for AppHubService
impl Unpin for AppHubService
impl UnwindSafe for AppHubService
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