rustdds 0.11.8

Native Rust DDS implementation with RTPS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// This module contains empty stubs that are used
// when security feature is not in use.

// These empty types are used to avoid changing function signatures
// depending on security enabled status.

pub mod security_plugins {
  #[derive(Debug, Clone)]
  pub struct SecurityPluginsHandle {}
}
pub use security_plugins::SecurityPluginsHandle;

pub struct EndpointSecurityInfo {}

pub struct SecureDiscovery {}