aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/src/renderer/general
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_core/src/renderer/general')
-rw-r--r--mingling_core/src/renderer/general/error.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/mingling_core/src/renderer/general/error.rs b/mingling_core/src/renderer/general/error.rs
index c462017..a61b19d 100644
--- a/mingling_core/src/renderer/general/error.rs
+++ b/mingling_core/src/renderer/general/error.rs
@@ -1,5 +1,10 @@
+/// Represents an error that occurs during serialization of a general renderer.
+///
+/// This error stores a human-readable message describing what went wrong
+/// during the serialization process.
#[derive(Debug)]
pub struct GeneralRendererSerializeError {
+ /// The underlying error message.
error: String,
}