1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//! This crates contains the types and methods needed to interact
//! with DICOM nodes through the upper layer protocol.
//!
//! This crate can be used as a base
//! for finite-state machines and higher-level helpers,
//! enabling the creation of concrete service class users (SCUs)
//! and service class providers (SCPs).
//!
//! - The [`address`] module
//! provides an abstraction for working with compound addresses
//! referring to application entities in a network.
//! - The [`pdu`] module
//! provides data structures representing _protocol data units_,
//! which are passed around as part of the DICOM network communication support.
//! - The [`association`] module
//! comprises abstractions for establishing and negotiating associations
//! between application entities,
//! via the upper layer protocol by TCP.
//!
//! DICOM Associations on top of TLS is also supported,
//! thus offering a Secure Transport Connection.
//! TLS capabilities are provided by one of the backends
//! supported by [Rustls](::rustls),
//! which includes client authentication if desired.
//!
//! ## Features
//!
//! * `async`: Enables a fully asynchronous implementation of the upper layer protocol.
//! See [`ClientAssociationOptions`] and [`ServerAssociationOptions`] for details
//! * `sync-tls`: Enables TLS support for synchronous associations.
//! * `async-tls`: Enables TLS support for asynchronous associations.
//! Implies `async` and `sync-tls`.
//! * `full`: Enables all capabilities: `async-tls`
/// The current implementation class UID generically referring to DICOM-rs.
///
/// Automatically generated as per the standard, part 5, section B.2.
///
/// This UID may change in future versions,
/// even between patch versions.
pub const IMPLEMENTATION_CLASS_UID: &str = "2.25.269557681719719925684832053554655571250";
/// The current implementation version name generically referring to DICOM-rs.
///
/// This name may change in future versions,
/// even between patch versions.
pub const IMPLEMENTATION_VERSION_NAME: &str = "DICOM-rs 0.9.1";
// re-exports
pub use ;
pub use ;
pub use ;
pub use read_pdu;
pub use write_pdu;
pub use Pdu;