pub struct LanAgentTaskSpecResponse {
pub lan_protocol_version: i32,
pub spec: Value,
pub task_id: String,
}Expand description
LanAgentTaskSpecResponse
JSON schema
{
"type": "object",
"required": [
"lan_protocol_version",
"spec",
"task_id"
],
"properties": {
"lan_protocol_version": {
"type": "integer",
"format": "int32",
"minimum": 0.0
},
"spec": {},
"task_id": {
"type": "string"
}
}
}Fields§
§lan_protocol_version: i32§spec: Value§task_id: StringTrait Implementations§
Source§impl Clone for LanAgentTaskSpecResponse
impl Clone for LanAgentTaskSpecResponse
Source§fn clone(&self) -> LanAgentTaskSpecResponse
fn clone(&self) -> LanAgentTaskSpecResponse
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 Debug for LanAgentTaskSpecResponse
impl Debug for LanAgentTaskSpecResponse
Source§impl<'de> Deserialize<'de> for LanAgentTaskSpecResponse
impl<'de> Deserialize<'de> for LanAgentTaskSpecResponse
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 LanAgentTaskSpecResponse
impl RefUnwindSafe for LanAgentTaskSpecResponse
impl Send for LanAgentTaskSpecResponse
impl Sync for LanAgentTaskSpecResponse
impl Unpin for LanAgentTaskSpecResponse
impl UnsafeUnpin for LanAgentTaskSpecResponse
impl UnwindSafe for LanAgentTaskSpecResponse
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