use crate::*;
#[derive(Data, New)]
pub(crate) struct FmtResult {
#[get(pub(crate), type(copy))]
#[get_mut(pub(crate))]
#[set(pub(crate))]
pub(crate) changed: bool,
#[get(pub(crate))]
#[get_mut(pub(crate))]
#[set(pub(crate))]
pub(crate) output: String,
}