Add note about results in value format impl

This commit is contained in:
Filip Tibell 2024-04-22 19:19:13 +02:00
parent 3433fb4c4f
commit 7f80093eaa
No known key found for this signature in database

View file

@ -13,9 +13,13 @@ pub use self::config::ValueFormatConfig;
use self::basic::{format_value_styled, lua_value_as_plain_string_key};
use self::style::STYLE_DIM;
type FmtResult = Result<String, fmt::Error>;
fn format_value_inner(value: &LuaValue, config: &ValueFormatConfig, depth: usize) -> FmtResult {
// NOTE: We return a result here but it's really just to make handling
// of the `write!` calls easier. Writing into a string should never fail.
fn format_value_inner(
value: &LuaValue,
config: &ValueFormatConfig,
depth: usize,
) -> Result<String, fmt::Error> {
let mut buffer = String::new();
// TODO: Rewrite this section to not be recursive and