pub struct AzureFoundryAiHeartbeatData {
pub account_name: String,
pub endpoint: Option<String>,
pub location: Option<String>,
pub resource_group: Option<String>,
pub status: AiHeartbeatStatus,
}Expand description
AzureFoundryAiHeartbeatData
JSON schema
{
"type": "object",
"required": [
"accountName",
"status"
],
"properties": {
"accountName": {
"type": "string"
},
"endpoint": {
"type": [
"string",
"null"
]
},
"location": {
"type": [
"string",
"null"
]
},
"resourceGroup": {
"type": [
"string",
"null"
]
},
"status": {
"$ref": "#/components/schemas/AiHeartbeatStatus"
}
}
}Fields§
§account_name: String§endpoint: Option<String>§location: Option<String>§resource_group: Option<String>§status: AiHeartbeatStatusImplementations§
Trait Implementations§
Source§impl Clone for AzureFoundryAiHeartbeatData
impl Clone for AzureFoundryAiHeartbeatData
Source§fn clone(&self) -> AzureFoundryAiHeartbeatData
fn clone(&self) -> AzureFoundryAiHeartbeatData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AzureFoundryAiHeartbeatData
impl Debug for AzureFoundryAiHeartbeatData
Source§impl<'de> Deserialize<'de> for AzureFoundryAiHeartbeatData
impl<'de> Deserialize<'de> for AzureFoundryAiHeartbeatData
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 From<&AzureFoundryAiHeartbeatData> for AzureFoundryAiHeartbeatData
impl From<&AzureFoundryAiHeartbeatData> for AzureFoundryAiHeartbeatData
Source§fn from(value: &AzureFoundryAiHeartbeatData) -> Self
fn from(value: &AzureFoundryAiHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl From<AzureFoundryAiHeartbeatData> for AzureFoundryAiHeartbeatData
impl From<AzureFoundryAiHeartbeatData> for AzureFoundryAiHeartbeatData
Source§fn from(value: AzureFoundryAiHeartbeatData) -> Self
fn from(value: AzureFoundryAiHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AzureFoundryAiHeartbeatData> for AzureFoundryAiHeartbeatData
impl TryFrom<AzureFoundryAiHeartbeatData> for AzureFoundryAiHeartbeatData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: AzureFoundryAiHeartbeatData) -> Result<Self, ConversionError>
fn try_from(value: AzureFoundryAiHeartbeatData) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AzureFoundryAiHeartbeatData
impl RefUnwindSafe for AzureFoundryAiHeartbeatData
impl Send for AzureFoundryAiHeartbeatData
impl Sync for AzureFoundryAiHeartbeatData
impl Unpin for AzureFoundryAiHeartbeatData
impl UnsafeUnpin for AzureFoundryAiHeartbeatData
impl UnwindSafe for AzureFoundryAiHeartbeatData
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