Function CFAttributedStringEndEditing

Source
pub unsafe extern "C-unwind" fn CFAttributedStringEndEditing(
    a_str: Option<&CFMutableAttributedString>,
)
Available on crate feature CFAttributedString only.
Expand description

In cases where attributed string might do a bunch of work to assure self-consistency, CFAttributedStringBeginEditing/CFAttributedStringEndEditing allow disabling that to allow deferring and coalescing any work. It’s a good idea to call these around a set of related mutation calls which don’t require the string to be in consistent state in between. These calls can be nested.