pub struct BackupStatus {
pub path: PathBuf,
pub items: Vec<String>,
}Expand description
A pending backup slot (used by agent --status).
Fields§
§path: PathBufBackup slot directory (.agents/backup-skills/<agent>).
items: Vec<String>Names of the entries parked in the slot.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BackupStatus
impl RefUnwindSafe for BackupStatus
impl Send for BackupStatus
impl Sync for BackupStatus
impl Unpin for BackupStatus
impl UnsafeUnpin for BackupStatus
impl UnwindSafe for BackupStatus
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