smb-dtyp 0.11.2

Common data types for `smb-rs`
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Windows Data Type (MS-DTYP) for SMB

#![forbid(unsafe_code)]
#![allow(unused_parens)]

pub mod binrw_util;
pub mod guid;
pub mod security;
pub mod util;

pub use guid::*;
pub use security::*;

pub use smb_dtyp_derive::mbitfield;