noosphere-core 0.18.1

Core data types of the Rust Noosphere implementation
Documentation
1
2
3
4
5
6
7
8
9
/// Recovery strategies for cases when gateway synchronization fails but may be
/// able to recover gracefully (e.g., when the gateway reports a conflict).
#[derive(Debug)]
pub enum SyncRecovery {
    /// Do not attempt to recover
    None,
    /// Automatically retry the synchronization up to a certain number of times
    Retry(u32),
}