pub struct PackageDescriptor {
pub path: String,
}Expand description
A self-contained agentOS package to link into a running VM via
AgentOs::link_software. path is normally the packed .aospkg file;
a directory is accepted only for local transition fixtures. The descriptor
is forwarded to the sidecar, which owns the /opt/agentos projection and
reads package metadata from the packed vbare manifest.
Fields§
§path: StringTrait Implementations§
Source§impl Clone for PackageDescriptor
impl Clone for PackageDescriptor
Source§fn clone(&self) -> PackageDescriptor
fn clone(&self) -> PackageDescriptor
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 PackageDescriptor
impl RefUnwindSafe for PackageDescriptor
impl Send for PackageDescriptor
impl Sync for PackageDescriptor
impl Unpin for PackageDescriptor
impl UnsafeUnpin for PackageDescriptor
impl UnwindSafe for PackageDescriptor
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