Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/ntfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib.rs1
-rw-r--r--src/ntfs.rs2
2 files changed, 1 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 5db12fb..6215182 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -37,7 +37,6 @@ pub use crate::index::*;
pub use crate::ntfs::*;
pub use crate::ntfs_file::*;
pub use crate::string::*;
-pub use crate::structured_values::*;
pub use crate::time::*;
pub use crate::traits::*;
pub use crate::types::*;
diff --git a/src/ntfs.rs b/src/ntfs.rs
index d1fb214..aeb6dd8 100644
--- a/src/ntfs.rs
+++ b/src/ntfs.rs
@@ -135,7 +135,7 @@ impl Ntfs {
/// of this NTFS volume.
/// Note that a volume may also have no label, which is why the return value is further
/// encapsulated in an `Option`.
- pub fn volume_name<'d, T>(&self, fs: &mut T) -> Option<Result<NtfsVolumeName>>
+ pub fn volume_name<T>(&self, fs: &mut T) -> Option<Result<NtfsVolumeName>>
where
T: Read + Seek,
{