/// Fully resolved character style. Tri-state deltas exist only during
/// frontend resolution (`shared::delta`); by the time content reaches the
/// model every toggle has a definite value.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]pubstructStyle{/// Bold weight.
pubbold:bool,
/// Italic or oblique.
pubitalic:bool,
/// Struck through.
pubstrike:bool,
/// Monospace, from a code or teletype character style.
pubcode:bool,
}implStyle{/// No toggle set.
pubconstPLAIN: Style = Style { bold:false, italic:false, strike:false, code:false};}