pub struct AgentDownload {
pub name: String,
pub version: String,
pub download_url: String,
pub checksum: String,
pub size: u64,
}Expand description
Agent download information
Fields§
§name: String§version: String§download_url: String§checksum: String§size: u64Trait 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