diff options
| author | LLLL Colonq <llll@colonq> | 2025-12-26 18:52:29 -0500 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2025-12-26 18:52:29 -0500 |
| commit | b8ec915593c81b7a5d0d497100ee4b9b1510cb55 (patch) | |
| tree | 0a9181b4899033e4be76d0d8ad88973e86e02154 /crates | |
| parent | 5de18553ff04d4ff6f2fb6f791dfa7b8e6da45aa (diff) | |
Make Error msg field public
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/teleia/src/utils.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/teleia/src/utils.rs b/crates/teleia/src/utils.rs index 9a543f3..ddab788 100644 --- a/crates/teleia/src/utils.rs +++ b/crates/teleia/src/utils.rs @@ -12,7 +12,7 @@ pub fn erm<E, T>(e: E) -> Erm<T> where E: std::error::Error + std::marker::Send #[derive(Debug)] pub struct Error { - msg: String + pub msg: String } impl std::fmt::Display for Error { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
