smb 0.4.3

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

pub mod file_time;
pub mod helpers;
pub mod pos_marker;
pub mod pos_marker_3byte;
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::pos_marker_3byte::PosMarker3Byte;
    pub use super::sized_wide_string::SizedWideString;
}