pub struct ReadMemo { /* private fields */ }Expand description
What one operation has already read.
Implementations§
Source§impl ReadMemo
impl ReadMemo
Sourcepub fn forget(&mut self, path: &Path)
pub fn forget(&mut self, path: &Path)
Forget path — what a write to it means.
Its parent’s listing goes too. A write may create the name or a remove may take it away, and the listing that enumerated the parent is the only one that can be wrong about it — so the operation that stages a change and then reads the workspace back does not resolve against a directory as it stood beforehand.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReadMemo
impl RefUnwindSafe for ReadMemo
impl Send for ReadMemo
impl Sync for ReadMemo
impl Unpin for ReadMemo
impl UnsafeUnpin for ReadMemo
impl UnwindSafe for ReadMemo
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