smb 0.11.2

A Pure Rust SMB Client implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod worker_trait;
pub use worker_trait::*;

#[cfg(feature = "single_threaded")]
pub mod single_worker;
#[cfg(feature = "single_threaded")]
pub use single_worker::SingleWorker as WorkerImpl;

#[cfg(not(feature = "single_threaded"))]
mod parallel;
#[cfg(not(feature = "single_threaded"))]
pub use parallel::ParallelWorker as WorkerImpl;