smb 0.7.1

A Pure Rust SMB Client implementation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This module contains utility types for the binrw crate.

pub mod file_time;
pub mod helpers;
pub mod pos_marker;
pub mod sized_wide_string;

pub mod prelude {
    pub use super::file_time::FileTime;
    pub use super::helpers::*;
    pub use super::pos_marker::PosMarker;
    pub use super::sized_wide_string::SizedWideString;
}