pub struct Lockfile {
pub entries: BTreeMap<String, LockEntry>,
pub dirty: bool,
}Fields§
§entries: BTreeMap<String, LockEntry>BTreeMap - a deterministic write order.
dirty: boolNew/updated entries appeared - the file needs rewriting (except under –frozen).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Lockfile
impl RefUnwindSafe for Lockfile
impl Send for Lockfile
impl Sync for Lockfile
impl Unpin for Lockfile
impl UnsafeUnpin for Lockfile
impl UnwindSafe for Lockfile
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