ziti-sdk 0.3.0

Ziti Rust SDK - High-performance, async-first implementation for secure, zero-trust networking
Documentation
1
2
3
4
5
6
7
8
9
10
//! Utility module
//!
//! Provides common utilities including retry mechanisms and timeout handling
//! for robust network operations.

pub mod retry;
pub mod time;

pub use retry::RetryPolicy;
pub use time::TimeoutConfig;