pavao 0.2.16

Rust client library for SMB 2/3 based on libsmbclient.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # types
//!
//! smb types

mod credentials;
mod dirent;
mod file;
mod mode;
mod options;
mod stat;

pub use credentials::SmbCredentials;
pub use dirent::{SmbDirent, SmbDirentType};
pub use file::{SmbFile, SmbOpenOptions};
pub use mode::{SmbMode, SmbModeClass};
pub use options::{SmbEncryptionLevel, SmbOptions, SmbShareMode};
pub use stat::{SmbDirentInfo, SmbStat, SmbStatVfs};