File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 3838use std:: fmt:: { self , Debug , Display , Formatter } ;
3939use std:: num:: NonZeroUsize ;
4040
41- /// Implement serde::Serialize and serde::Deserialize traits for Tree
42- ///
43- /// # Warning
44- /// Serialize and Deserialize implementations are recursive. They require an amount of stack memory
45- /// proportional to the tree depth.
4641#[ cfg( feature = "serde" ) ]
4742pub mod serde;
4843
Original file line number Diff line number Diff line change 1+ //! Implement `serde::Serialize` and `serde::Deserialize` traits for Tree
2+ //!
3+ //! # Warning
4+ //! Serialize and Deserialize implementations are recursive. They require an amount of stack memory
5+ //! proportional to the depth of the tree.
6+
17use std:: { fmt, marker:: PhantomData } ;
28
39use serde:: {
You can’t perform that action at this time.
0 commit comments