aboutsummaryrefslogtreecommitdiff
path: root/src/structs/error.rs
diff options
context:
space:
mode:
authorIgor Tolmachev <me@igorek.dev>2024-07-17 17:38:19 +0900
committerIgor Tolmachev <me@igorek.dev>2024-07-17 17:38:19 +0900
commit5f4ceda88c7299deb317f8d22a99ab2521c5a380 (patch)
tree6b0d7e0ae99376079c599ee897fe73c2e5035420 /src/structs/error.rs
parent2f0f96ce4625d2ef1273c7bea98a1e9415419fdf (diff)
downloadarchivator-5f4ceda88c7299deb317f8d22a99ab2521c5a380.tar.gz
archivator-5f4ceda88c7299deb317f8d22a99ab2521c5a380.zip
Add more `#[inline]` markers
Diffstat (limited to 'src/structs/error.rs')
-rw-r--r--src/structs/error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/structs/error.rs b/src/structs/error.rs
index 3e74e45..f07163c 100644
--- a/src/structs/error.rs
+++ b/src/structs/error.rs
@@ -14,7 +14,7 @@ pub enum StructError {
14impl From<StructError> for ArchiveError<StructError> { 14impl From<StructError> for ArchiveError<StructError> {
15 fn from(value: StructError) -> Self { 15 fn from(value: StructError) -> Self {
16 Self::Archivator { 16 Self::Archivator {
17 module: "Struct serializer".to_string(), 17 module: "Struct serializer",
18 error: value, 18 error: value,
19 } 19 }
20 } 20 }