1use zx_status::Status;
8
9#[doc(hidden)]
12pub fn unwrap_add_entry_span(entry: &str, location: &str, res: Result<(), Status>) {
13 if res.is_ok() {
14 return;
15 }
16
17 let status = res.unwrap_err();
18 let text;
19 let error_text = match status {
20 Status::ALREADY_EXISTS => "Duplicate entry name.",
21 _ => {
22 text = format!("`add_entry` failed with an unexpected status: {}", status);
23 &text
24 }
25 };
26
27 panic!(
28 "Pseudo directory tree generated via pseudo_directory! macro\n\
29 {}\n\
30 {}\n\
31 Entry: '{}'",
32 location, error_text, entry
33 );
34}