1# for more information.
53
54Other than that it is very similar - splits writes at each position and if written data don't match it reports an error.
55Backtrace capturing is similar as well - the last call is captured and if the current call writes unexpected data last one is reported as likely culprit.
56
57## MSRV
58
591.41.1 without `backtrace` feature, 1.48 with `backtrace` feature.
60
61## License
62
63MITNFA
64"]
65
66pub use read::hack::test_read;
67pub use write::hack::test_write;
68
69pub mod read;
70pub mod write;
71mod backtrace_impl;