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