pub struct AgentDownload {
pub agent_id: String,
pub name: String,
pub author: String,
pub version: String,
pub download_url: String,
pub file_size: u64,
pub checksum: String,
pub content_type: String,
pub definition: Value,
}Expand description
Agent download information
Fields§
§agent_id: String§name: String§version: String§download_url: String§file_size: u64§checksum: String§content_type: String§definition: ValueTrait Implementations§
Source§impl Debug for AgentDownload
impl Debug for AgentDownload
Source§impl<'de> Deserialize<'de> for AgentDownload
impl<'de> Deserialize<'de> for AgentDownload
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 AgentDownload
impl RefUnwindSafe for AgentDownload
impl Send for AgentDownload
impl Sync for AgentDownload
impl Unpin for AgentDownload
impl UnwindSafe for AgentDownload
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