pub struct DeploymentDisplayEntry {
pub pack: String,
pub handler: String,
pub kind: String,
pub source: String,
pub datastore: String,
}Expand description
Display-shaped deployment-map row. Paths are pre-shortened to
~/… where they live under HOME so the rendered table stays
narrow; the machine-readable TSV on disk keeps absolute paths.
Fields§
§pack: String§handler: String§kind: String§source: StringPre-shortened (~/…) absolute source path; empty for
non-symlink entries (sentinels, rendered files).
datastore: StringPre-shortened absolute datastore path.
Trait Implementations§
Source§impl Clone for DeploymentDisplayEntry
impl Clone for DeploymentDisplayEntry
Source§fn clone(&self) -> DeploymentDisplayEntry
fn clone(&self) -> DeploymentDisplayEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 DeploymentDisplayEntry
impl Debug for DeploymentDisplayEntry
Auto Trait Implementations§
impl Freeze for DeploymentDisplayEntry
impl RefUnwindSafe for DeploymentDisplayEntry
impl Send for DeploymentDisplayEntry
impl Sync for DeploymentDisplayEntry
impl Unpin for DeploymentDisplayEntry
impl UnsafeUnpin for DeploymentDisplayEntry
impl UnwindSafe for DeploymentDisplayEntry
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