Add missing keyword "pub" for Link type

This commit is contained in:
Matthias Beyer 2016-05-26 18:18:21 +02:00
parent 2e80c29f47
commit 0f52900456
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ use crypto::sha1::Sha1;
use crypto::digest::Digest;
/// "Link" Type, just an abstraction over `FileLockEntry` to have some convenience internally.
struct Link<'a> {
pub struct Link<'a> {
link: FileLockEntry<'a>
}