pub struct ApplicationConfigResponse {
pub config_id: String,
pub created_at: i64,
pub updated_at: i64,
pub name: String,
pub description: String,
pub app_config: BTreeMap<String, ApplicationConfigContents>,
pub labels: BTreeMap<String, String>,
pub ports: BTreeSet<String>,
pub zone: Option<VersionedZoneId>,
}Expand description
Fields§
§config_id: String§created_at: i64§updated_at: i64§name: String§description: String§app_config: BTreeMap<String, ApplicationConfigContents>§labels: BTreeMap<String, String>§ports: BTreeSet<String>§zone: Option<VersionedZoneId>Implementations§
Trait Implementations§
Source§impl Clone for ApplicationConfigResponse
impl Clone for ApplicationConfigResponse
Source§fn clone(&self) -> ApplicationConfigResponse
fn clone(&self) -> ApplicationConfigResponse
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 ApplicationConfigResponse
impl Debug for ApplicationConfigResponse
Source§impl<'de> Deserialize<'de> for ApplicationConfigResponse
impl<'de> Deserialize<'de> for ApplicationConfigResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ApplicationConfigResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ApplicationConfigResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ApplicationConfigResponse
impl Serialize for ApplicationConfigResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ApplicationConfigResponse
Auto Trait Implementations§
impl Freeze for ApplicationConfigResponse
impl RefUnwindSafe for ApplicationConfigResponse
impl Send for ApplicationConfigResponse
impl Sync for ApplicationConfigResponse
impl Unpin for ApplicationConfigResponse
impl UnwindSafe for ApplicationConfigResponse
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