Trait UnlockFile

Source
pub trait UnlockFile {
    // Required method
    fn unlock_file(&mut self, lock: *mut Box<dyn FileLock>) -> Status;
}

Required Methods§

Source

fn unlock_file(&mut self, lock: *mut Box<dyn FileLock>) -> Status

| Release the lock acquired by a previous | successful call to LockFile. | | REQUIRES: lock was returned by a successful | LockFile() call | | REQUIRES: lock has not already been unlocked.

Implementors§