pub struct ExternalAgentConfigImportHistory {
pub completed_at_ms: i64,
pub failures: Vec<ExternalAgentConfigImportItemTypeFailure>,
pub import_id: String,
pub successes: Vec<ExternalAgentConfigImportItemTypeSuccess>,
}Expand description
ExternalAgentConfigImportHistory
JSON schema
{
"type": "object",
"required": [
"completedAtMs",
"failures",
"importId",
"successes"
],
"properties": {
"completedAtMs": {
"type": "integer",
"format": "int64"
},
"failures": {
"type": "array",
"items": {
"$ref": "#/definitions/ExternalAgentConfigImportItemTypeFailure"
}
},
"importId": {
"type": "string"
},
"successes": {
"type": "array",
"items": {
"$ref": "#/definitions/ExternalAgentConfigImportItemTypeSuccess"
}
}
}
}Fields§
§completed_at_ms: i64§failures: Vec<ExternalAgentConfigImportItemTypeFailure>§import_id: String§successes: Vec<ExternalAgentConfigImportItemTypeSuccess>Trait Implementations§
Source§impl Clone for ExternalAgentConfigImportHistory
impl Clone for ExternalAgentConfigImportHistory
Source§fn clone(&self) -> ExternalAgentConfigImportHistory
fn clone(&self) -> ExternalAgentConfigImportHistory
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 ExternalAgentConfigImportHistory
impl<'de> Deserialize<'de> for ExternalAgentConfigImportHistory
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
Auto Trait Implementations§
impl Freeze for ExternalAgentConfigImportHistory
impl RefUnwindSafe for ExternalAgentConfigImportHistory
impl Send for ExternalAgentConfigImportHistory
impl Sync for ExternalAgentConfigImportHistory
impl Unpin for ExternalAgentConfigImportHistory
impl UnsafeUnpin for ExternalAgentConfigImportHistory
impl UnwindSafe for ExternalAgentConfigImportHistory
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