/// Result of formatting a single file.
////// Indicates whether the file was already formatted or needed changes,
/// and provides the formatted output when applicable.
pubstructFmtResult{/// Whether the file content was changed by formatting.
pubchanged:bool,
/// The formatted file content (identical to input if `changed` is false).
puboutput: String,
}