pub struct ExternalAgentConfigImportItemTypeFailure {
pub cwd: Option<String>,
pub error_type: Option<String>,
pub failure_stage: String,
pub item_type: ExternalAgentConfigMigrationItemType,
pub message: String,
pub source: Option<String>,
}Expand description
ExternalAgentConfigImportItemTypeFailure
JSON schema
{
"type": "object",
"required": [
"failureStage",
"itemType",
"message"
],
"properties": {
"cwd": {
"type": [
"string",
"null"
]
},
"errorType": {
"type": [
"string",
"null"
]
},
"failureStage": {
"type": "string"
},
"itemType": {
"$ref": "#/definitions/ExternalAgentConfigMigrationItemType"
},
"message": {
"type": "string"
},
"source": {
"type": [
"string",
"null"
]
}
}
}Fields§
§cwd: Option<String>§error_type: Option<String>§failure_stage: String§item_type: ExternalAgentConfigMigrationItemType§message: String§source: Option<String>Trait Implementations§
Source§impl Clone for ExternalAgentConfigImportItemTypeFailure
impl Clone for ExternalAgentConfigImportItemTypeFailure
Source§fn clone(&self) -> ExternalAgentConfigImportItemTypeFailure
fn clone(&self) -> ExternalAgentConfigImportItemTypeFailure
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 ExternalAgentConfigImportItemTypeFailure
impl<'de> Deserialize<'de> for ExternalAgentConfigImportItemTypeFailure
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 ExternalAgentConfigImportItemTypeFailure
impl RefUnwindSafe for ExternalAgentConfigImportItemTypeFailure
impl Send for ExternalAgentConfigImportItemTypeFailure
impl Sync for ExternalAgentConfigImportItemTypeFailure
impl Unpin for ExternalAgentConfigImportItemTypeFailure
impl UnsafeUnpin for ExternalAgentConfigImportItemTypeFailure
impl UnwindSafe for ExternalAgentConfigImportItemTypeFailure
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