pub struct RemoteStackManagementHeartbeatStatus {
pub collection_issues: Vec<HeartbeatCollectionIssue>,
pub health: ObservedHealth,
pub lifecycle: ProviderLifecycleState,
pub message: Option<String>,
pub partial: bool,
pub stale: bool,
}Expand description
RemoteStackManagementHeartbeatStatus
JSON schema
{
"type": "object",
"required": [
"collectionIssues",
"health",
"lifecycle",
"partial",
"stale"
],
"properties": {
"collectionIssues": {
"type": "array",
"items": {
"$ref": "#/components/schemas/HeartbeatCollectionIssue"
}
},
"health": {
"$ref": "#/components/schemas/ObservedHealth"
},
"lifecycle": {
"$ref": "#/components/schemas/ProviderLifecycleState"
},
"message": {
"type": [
"string",
"null"
]
},
"partial": {
"type": "boolean"
},
"stale": {
"type": "boolean"
}
}
}Fields§
§collection_issues: Vec<HeartbeatCollectionIssue>§health: ObservedHealth§lifecycle: ProviderLifecycleState§message: Option<String>§partial: bool§stale: boolImplementations§
Trait Implementations§
Source§impl Clone for RemoteStackManagementHeartbeatStatus
impl Clone for RemoteStackManagementHeartbeatStatus
Source§fn clone(&self) -> RemoteStackManagementHeartbeatStatus
fn clone(&self) -> RemoteStackManagementHeartbeatStatus
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<'de> Deserialize<'de> for RemoteStackManagementHeartbeatStatus
impl<'de> Deserialize<'de> for RemoteStackManagementHeartbeatStatus
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<&RemoteStackManagementHeartbeatStatus> for RemoteStackManagementHeartbeatStatus
impl From<&RemoteStackManagementHeartbeatStatus> for RemoteStackManagementHeartbeatStatus
Source§fn from(value: &RemoteStackManagementHeartbeatStatus) -> Self
fn from(value: &RemoteStackManagementHeartbeatStatus) -> Self
Converts to this type from the input type.
Source§impl From<RemoteStackManagementHeartbeatStatus> for RemoteStackManagementHeartbeatStatus
impl From<RemoteStackManagementHeartbeatStatus> for RemoteStackManagementHeartbeatStatus
Source§fn from(value: RemoteStackManagementHeartbeatStatus) -> Self
fn from(value: RemoteStackManagementHeartbeatStatus) -> Self
Converts to this type from the input type.
Source§impl TryFrom<RemoteStackManagementHeartbeatStatus> for RemoteStackManagementHeartbeatStatus
impl TryFrom<RemoteStackManagementHeartbeatStatus> for RemoteStackManagementHeartbeatStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: RemoteStackManagementHeartbeatStatus,
) -> Result<Self, ConversionError>
fn try_from( value: RemoteStackManagementHeartbeatStatus, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for RemoteStackManagementHeartbeatStatus
impl RefUnwindSafe for RemoteStackManagementHeartbeatStatus
impl Send for RemoteStackManagementHeartbeatStatus
impl Sync for RemoteStackManagementHeartbeatStatus
impl Unpin for RemoteStackManagementHeartbeatStatus
impl UnsafeUnpin for RemoteStackManagementHeartbeatStatus
impl UnwindSafe for RemoteStackManagementHeartbeatStatus
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