pub struct InstalledAgent {
pub name: String,
pub version: String,
pub path: PathBuf,
pub description: String,
}Expand description
Information about an installed agent.
Fields§
§name: StringAgent name
version: StringAgent version
path: PathBufInstallation path
description: StringAgent description
Trait Implementations§
Source§impl Clone for InstalledAgent
impl Clone for InstalledAgent
Source§fn clone(&self) -> InstalledAgent
fn clone(&self) -> InstalledAgent
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 moreAuto Trait Implementations§
impl Freeze for InstalledAgent
impl RefUnwindSafe for InstalledAgent
impl Send for InstalledAgent
impl Sync for InstalledAgent
impl Unpin for InstalledAgent
impl UnsafeUnpin for InstalledAgent
impl UnwindSafe for InstalledAgent
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