pub struct ExternalAgentConfigImportResponse {
pub import_id: String,
}Expand description
ExternalAgentConfigImportResponse
JSON schema
{
"title": "ExternalAgentConfigImportResponse",
"type": "object",
"required": [
"importId"
],
"properties": {
"importId": {
"type": "string"
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}Fields§
§import_id: StringTrait Implementations§
Source§impl Clone for ExternalAgentConfigImportResponse
impl Clone for ExternalAgentConfigImportResponse
Source§fn clone(&self) -> ExternalAgentConfigImportResponse
fn clone(&self) -> ExternalAgentConfigImportResponse
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 ExternalAgentConfigImportResponse
impl<'de> Deserialize<'de> for ExternalAgentConfigImportResponse
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 ExternalAgentConfigImportResponse
impl RefUnwindSafe for ExternalAgentConfigImportResponse
impl Send for ExternalAgentConfigImportResponse
impl Sync for ExternalAgentConfigImportResponse
impl Unpin for ExternalAgentConfigImportResponse
impl UnsafeUnpin for ExternalAgentConfigImportResponse
impl UnwindSafe for ExternalAgentConfigImportResponse
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