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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// SPDX-FileCopyrightText: 2025 RAprogramm <andrey.rozanov.vl@gmail.com>
//
// SPDX-License-Identifier: MIT
//! Metadata attachment methods for [`ErrorResponse`].
//!
//! This module provides builder methods for attaching HTTP-specific metadata
//! to error responses, such as retry advice and authentication challenges.
//!
//! # Available Metadata
//!
//! - **Retry advice**: [`with_retry_after_secs`], [`with_retry_after_duration`]
//! - Sets the `Retry-After` header in HTTP integrations
//! - **Authentication challenge**: [`with_www_authenticate`]
//! - Sets the `WWW-Authenticate` header in HTTP integrations
//!
//! # Examples
//!
//! ```rust
//! use core::time::Duration;
//!
//! use masterror::{AppCode, ErrorResponse};
//!
//! let resp = ErrorResponse::new(503, AppCode::Internal, "service unavailable")
//! .expect("status")
//! .with_retry_after_secs(30)
//! .with_www_authenticate("Bearer realm=\"api\"");
//!
//! assert_eq!(resp.retry.unwrap().after_seconds, 30);
//! assert_eq!(
//! resp.www_authenticate.as_deref(),
//! Some("Bearer realm=\"api\"")
//! );
//! ```
//!
//! [`with_retry_after_secs`]: ErrorResponse::with_retry_after_secs
//! [`with_retry_after_duration`]: ErrorResponse::with_retry_after_duration
//! [`with_www_authenticate`]: ErrorResponse::with_www_authenticate
use String;
use Duration;
use ;