Add missing serde::{de, ser} top level comment

This commit is contained in:
Alex Orlenko
2024-10-20 11:52:13 +01:00
parent f8fe9246bb
commit 75475fc9a8
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -1,3 +1,5 @@
//! Deserialize Lua values to a Rust data structure.
use std::cell::RefCell;
use std::os::raw::c_void;
use std::rc::Rc;
+2
View File
@@ -1,3 +1,5 @@
//! Serialize a Rust data structure into Lua value.
use serde::{ser, Serialize};
use super::LuaSerdeExt;